(function(e, t, n, r, i) { function s(e, t, n, r) { r = r instanceof Array ? r : []; var i = {}; for (var s = 0; s < r.length; s++) { i[r[s]] = true } var o = function(e) { this.element = e }; o.prototype = n; e.fn[t] = function() { var n = arguments; var r = this; this.each(function() { var s = e(this); var u = s.data("plugin-" + t); if (!u) { u = new o(s); s.data("plugin-" + t, u); if (u._init) { u._init.apply(u, n) } } else if (typeof n[0] == "string" && n[0].charAt(0) != "_" && typeof u[n[0]] == "function") { var a = Array.prototype.slice.call(n, 1); var f = u[n[0]].apply(u, a); if (n[0] in i) { r = f } } }); return r } } var o = 930, u = 630, a = 70; var f = { stateStyles: { fill: "#333", stroke: "#666", "stroke-width": 1, "stroke-linejoin": "round", scale: [1, 1] }, stateHoverStyles: { fill: "#33c", stroke: "#000", scale: [1.1, 1.1] }, stateHoverAnimation: 500, stateSpecificStyles: {}, stateSpecificHoverStyles: {}, click: null, mouseover: null, mouseout: null, clickState: {}, mouseoverState: {}, mouseoutState: {}, showLabels: true, labelWidth: 20, labelHeight: 15, labelGap: 6, labelRadius: 3, labelBackingStyles: { fill: "#333", stroke: "#666", "stroke-width": 1, "stroke-linejoin": "round", scale: [1, 1] }, labelBackingHoverStyles: { fill: "#33c", stroke: "#000" }, stateSpecificLabelBackingStyles: {}, stateSpecificLabelBackingHoverStyles: {}, labelTextStyles: { fill: "#fff", stroke: "none", "font-weight": 300, "stroke-width": 0, "font-size": "10px" }, labelTextHoverStyles: {}, stateSpecificLabelTextStyles: {}, stateSpecificLabelTextHoverStyles: {} }; var l = { _init: function(t) { this.options = {}; e.extend(this.options, f, t); var n = this.element.width(); var i = this.element.height(); var s = this.element.width() / o; var l = this.element.height() / u; this.scale = Math.min(s, l); this.labelAreaWidth = Math.ceil(a / this.scale); var c = o + Math.max(0, this.labelAreaWidth - a); this.paper = r(this.element.get(0), c, u); this.paper.setSize(n, i); this.paper.setViewBox(0, 0, c, u, false); this.stateHitAreas = {}; this.stateShapes = {}; this.topShape = null; this._initCreateStates(); this.labelShapes = {}; this.labelTexts = {}; this.labelHitAreas = {}; }, _initCreateStates: function() { var t = this.options.stateStyles; var n = this.paper; var r = { SC: "m 169.4385,177.34388 h 18.24645 v 19.70617 h -21.16589 v -19.7974 z", GA: "m 562.65832,352.41651 h 18.24646 v 19.70617 h -21.16589 v -19.79741 z", NC: "m 559.00347,238.67431 h 18.24645 v 19.70617 h -21.16589 v -19.79741 z", RI: "m 718.2131,332.96547 h 18.24644 v 19.70617 h -21.16589 v -19.79741 z", CT: "m 896.94363,214.70842 h 18.24645 v 19.70617 h -21.1659 v -19.7974 z", MA: "m 591.81201,211.68664 h 18.24645 v 19.70617 H 588.89257 V 211.5954 Z", NH: "m 1083.2278,344.87013 h 18.2474 v 19.70618 h -21.1671 V 344.7789 Z", VT: "m 1087.4404,567.96822 h 18.2464 v 19.70618 h -21.1659 v -19.79741 z", }; var i = {}; for (var s in r) { i = {}; if (this.options.stateSpecificStyles[s]) { e.extend(i, t, this.options.stateSpecificStyles[s]) } else { i = t } this.stateShapes[s] = n.path(r[s]).attr(i); this.topShape = this.stateShapes[s]; this.stateHitAreas[s] = n.path(r[s]).attr({ fill: "#000", "stroke-width": 0, opacity: 0, cursor: "pointer" }); this.stateHitAreas[s].node.dataState = s } this._onClickProxy = e.proxy(this, "_onClick"); this._onMouseOverProxy = e.proxy(this, "_onMouseOver"), this._onMouseOutProxy = e.proxy(this, "_onMouseOut"); for (var s in this.stateHitAreas) { this.stateHitAreas[s].toFront(); e(this.stateHitAreas[s].node).bind("mouseout", this._onMouseOutProxy); e(this.stateHitAreas[s].node).bind("click", this._onClickProxy); e(this.stateHitAreas[s].node).bind("mouseover", this._onMouseOverProxy) } }, _getStateFromEvent: function(e) { var t = e.target && e.target.dataState || e.dataState; return this._getState(t) }, _getState: function(e) { var t = this.stateShapes[e]; var n = this.stateHitAreas[e]; var r = this.labelShapes[e]; var i = this.labelTexts[e]; var s = this.labelHitAreas[e]; return { shape: t, hitArea: n, name: e, labelBacking: r, labelText: i, labelHitArea: s } }, _onMouseOut: function(e) { var t = this._getStateFromEvent(e); if (!t.hitArea) { return } return !this._triggerEvent("mouseout", e, t) }, _defaultMouseOutAction: function(t) { var n = {}; if (this.options.stateSpecificStyles[t.name]) { e.extend(n, this.options.stateStyles, this.options.stateSpecificStyles[t.name]) } else { n = this.options.stateStyles } t.shape.animate(n, this.options.stateHoverAnimation); if (t.labelBacking) { var n = {}; if (this.options.stateSpecificLabelBackingStyles[t.name]) { e.extend(n, this.options.labelBackingStyles, this.options.stateSpecificLabelBackingStyles[t.name]) } else { n = this.options.labelBackingStyles } t.labelBacking.animate(n, this.options.stateHoverAnimation) } }, _onClick: function(e) { var t = this._getStateFromEvent(e); if (!t.hitArea) { return } return !this._triggerEvent("click", e, t) }, _onMouseOver: function(e) { var t = this._getStateFromEvent(e); if (!t.hitArea) { return } return !this._triggerEvent("mouseover", e, t) }, _defaultMouseOverAction: function(t) { this.bringShapeToFront(t.shape); this.paper.safari(); var n = {}; if (this.options.stateSpecificHoverStyles[t.name]) { e.extend(n, this.options.stateHoverStyles, this.options.stateSpecificHoverStyles[t.name]) } else { n = this.options.stateHoverStyles } t.shape.animate(n, this.options.stateHoverAnimation); if (t.labelBacking) { var n = {}; if (this.options.stateSpecificLabelBackingHoverStyles[t.name]) { e.extend(n, this.options.labelBackingHoverStyles, this.options.stateSpecificLabelBackingHoverStyles[t.name]) } else { n = this.options.labelBackingHoverStyles } t.labelBacking.animate(n, this.options.stateHoverAnimation) } }, _triggerEvent: function(t, n, r) { var i = r.name; var s = false; var o = e.Event("usmap" + t + i); o.originalEvent = n; if (this.options[t + "State"][i]) { s = this.options[t + "State"][i](o, r) === false } if (o.isPropagationStopped()) { this.element.trigger(o, [r]); s = s || o.isDefaultPrevented() } if (!o.isPropagationStopped()) { var u = e.Event("usmap" + t); u.originalEvent = n; if (this.options[t]) { s = this.options[t](u, r) === false || s } if (!u.isPropagationStopped()) { this.element.trigger(u, [r]); s = s || u.isDefaultPrevented() } } if (!s) { switch (t) { case "mouseover": this._defaultMouseOverAction(r); break; case "mouseout": this._defaultMouseOutAction(r); break } } return !s }, trigger: function(e, t, n) { t = t.replace("usmap", ""); e = e.toUpperCase(); var r = this._getState(e); this._triggerEvent(t, n, r) }, bringShapeToFront: function(e) { if (this.topShape) { e.insertAfter(this.topShape) } this.topShape = e } }; var c = []; s(e, "usmap", l, c) })(jQuery, document, window, Raphael) const style = document.createElement('style'); style.textContent = ` #map_container { background-repeat: no-repeat; background-size: cover; background-image: url('https://i.imgur.com/NHUaZnM.png'); } `; document.head.append(style); campaignTrail_temp.questions_json = [ { "model": "campaign_trail.question", "pk": 610, "fields": { "priority": 0, "description": "36 AD. It has been three years since your encounter with the resurrected Messiah, and you have remained mostly silent about your turn to Christ, weighing your options. After so much time agonizing, you know only one thing for certain – you can hide your belief no longer and must do something to profess your faith. Word of a man named Cephas who bears much importance to the Christ-followers of Jerusalem has caught your ear.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 609, "fields": { "priority": 1, "description": "Under Barnabas' trust, you are directed to Cephas, who introduces himself by his Greek name, Peter. Peter is particularly fascinated by your story of being a persecutor turned believer. After a rapt conversation, he off-handedly mentions the possibility of arranging yourself a meeting with the leader of the church in Jerusalem, James.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14671, "fields": { "priority": 0, "description": "TEst", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 611, "fields": { "priority": 2, "description": "Several months have passed since your visit to Jerusalem. Accepted by church officials, you returned to Damascus and began to loudly and proudly proclaim the gospel across the city – an action which has caught the attention of the local officials and the governor of Damascus. Your fervent attitude has led to a warrant for your arrest. You must flee.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 639, "fields": { "priority": 3, "description": "Left without a home, you make haste to Antioch, a city renowned for its large Jewish population. Without funds, connections, or employment, you must make a name and an income for yourself in some fashion while events develop around you.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 636, "fields": { "priority": 3, "description": "The command over your audience which your words hold in Antioch is turning heads across the city. The Jewish leaders of the church in the area, compelled by the Holy Spirit, are hoping to put your efforts to good use and send you out to preach among the gentiles of Europe and Asia alongside Barnabas – with their backing, financially and morally.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 638, "fields": { "priority": 3, "description": "50 AD. It has been fourteen years since your first mission to the gentiles, and your word has traveled far in those many years. Now, you head to Jerusalem with Barnabas and Titus, set to meet with James and the rest of the apostles in hopes that they may sponsor a larger, more fruitful trip.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 637, "fields": { "priority": 3, "description": "All at once, things have taken a turn for the worse – dark clouds surround the synagogue as rumors circle around Titus' gentile status. His non-believing past reflects on you in the eyes of these holy men, and now that it's made its way to James, John and Peter, you need to push more than ever your sincerity and the truth of your gospel.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 618, "fields": { "priority": 4, "description": "You, Barnabas, and Titus are on your way back to Antioch, eager to embark on a second missionary journey – an expansive and sure to be expensive trip. What do you intend to do upon your arrival? ", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 617, "fields": { "priority": 4, "description": "Peter arrives at Antioch, eating and drinking with your Gentile converts in the city. The situation is seeming favorable to you until the arrival of the rest of the missionaries, Peter has denounced your eating with the Gentiles and withdrawal from the traditions of your forefathers. Even Barnabas is turning against you. You need to ensure continued support from the Jerusalem church.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 620, "fields": { "priority": 4, "description": "The troubles of home behind you, you embark on a journey across the Mediterranean Sea. Only able to pay for passage on the cheap, the journey is rough and sure to be limited. Eventually, you arrive in Philippi to preach gospel to men and women who have only briefly and confusingly interacted with Jews before. How will you break the ice with them?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 613, "fields": { "priority": 4, "description": "Following Philippi, you are off to the city of Thessaloniki – though large in size, your outreach is limited to the poor and uneducated of the city. What will be the general teaching of your gospel in Thessaloniki?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 619, "fields": { "priority": 4, "description": "With Thessaloniki and several other journeys finally behind you, the time has come for one of Greece's greatest and most populous cities – Corinth. You have a strong feeling of the importance of winning over gentiles in this city. What will lay the foundation for the church in Corinth? ", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 616, "fields": { "priority": 4, "description": "You have been quick to teach your congregation in Christ about the institution of the Lord’s Supper. The congregation, naturally, has now asked you about the meaning of their weekly meeting. You recall the teachings of James and Peter – Christ was handed over the night he instituted the divine dinner.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14585, "fields": { "priority": 0, "description": "Unfortunately, despite some early success, the Corinthians are not taking well to your ministry. They question your teachings as contrary to the Judaism that they are familiar with. You need to dissuade them of their doubts.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 615, "fields": { "priority": 4, "description": "Shortly before leaving Corinth behind you, you unexpectedly receive a letter from a member of the Thessaloniki congregation. It hastily writes that the city's congregation has been in disarray. Many of the Thessalonians which you baptized have died since your visit, and they fearfully believe that those who die will be unable to have eternal life with the Messiah upon his return.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 614, "fields": { "priority": 4, "description": "You have come back to Antioch to prepare for another missionary journey. This time will be a long jaunt across Asia Minor, heading far inland. What will you do in Antioch in the meanwhile?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 622, "fields": { "priority": 4, "description": "The beginnings of your third mission lie in Galatia, a vast region of Anatolia populated by paganistic Celts. What will be your approach going into the area?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 621, "fields": { "priority": 4, "description": "Along the journey across Asia Minor, you meet a man named Apollos, an Egyptian Jew who is also in Christ. After you inform him you are on your way to Ephesus, he informs you that he himself is on the way to Corinth to preach the gospel.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 640, "fields": { "priority": 5, "description": "Expecting usual work at Ephesus, the situation becomes increasingly complicated as you receive a letter from Corinth while laying the groundwork for a new church. The Corinthians, an oft-divided people, have fallen on old habits – your acquaintance Apollos has made matters worse. Gentiles in-Christ have started declaring themselves loyal to Apollos, to you, or to Peter. How will you resolve this?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 641, "fields": { "priority": 5, "description": "You continue reading the letter from the Corinthians, and there are more questions. Those wealthier brothers of yours who own slaves ask whether it is right to own a brother in Christ.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 647, "fields": { "priority": 5, "description": "The final concern of the Corinthians is especially demotivating and almost baffling. Sexual immorality has ran rampant in the congregation since you left, with rumors of pederasty and incest. This must not stand.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14540, "fields": { "priority": 0, "description": "You’re traveling back around Macedonia to preach the gospel, would you like to visit any nearby congregations?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 646, "fields": { "priority": 5, "description": "You hoped to have the last of it behind you after your previous letter to the Corinthians, but the situation has only grown worse as you head to Macedonia. A number of Judaizers, claiming to be sent from James, have encouraged circumcision of the converts to Christ! They reject your gospel in every way and attack your legitimacy as an apostle. ", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 645, "fields": { "priority": 5, "description": "Hopefully, that is the last you hear from the Corinthians. With that settled, you have time to relax and think of what is next for your ministry. You are informed that in Rome there is a congregation of those in Christ – they have likely never heard of you in their life, but if you could send a letter to them, perhaps you would have much to gain.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 642, "fields": { "priority": 5, "description": "Now it feels as if the Judaizers in Corinth are tracing your steps! You've heard of rumors and received letters from Christ-followers in Asia Minor that the Galatians have fallen to the lies of those who preach circumcision. The situation sounding much worse than in Corinth – Winning them back could make or break your ministry.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 650, "fields": { "priority": 5, "description": "With your third mission behind you, it is time to return to Jerusalem and once again meet with the leaders of the Jerusalem Church to boast about the fruits of your mission. Hopefully with greater things ahead of you, what will you say to James, Peter and John?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 651, "fields": { "priority": -1, "description": "Leaving Jerusalem, you immediately find yourself arrested by Judean leaders! Charged with various crimes like hatred of humanity, sedition, and treason, you are swiftly sent to a preliminary hearing. All eyes are on you.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14494, "fields": { "priority": 0, "description": "With little left to lose, you hope to find a way out of Jerusalem and have your imprisonment transferred to Rome where you may find yourself more useful among the Gentiles. What, if any, will be your argument to go to the area?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14496, "fields": { "priority": 0, "description": "There seems to be no end to your ministry as you receive a letter from Philippi. The congregation in the city worries for you and the influence of false brethren while you are locked up. The world may very well hear your response.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14498, "fields": { "priority": 0, "description": "Having been seldom seen but constantly written to, your imprisonment has been lessened by a slave named Onesimus, a brother in Christ who has never wavered in performing what you cannot and providing for you while in prison. His master, Philemon has requested his return. You decide to send a letter to Philemon regarding Onesimus – what do you ask?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14499, "fields": { "priority": 0, "description": "While you’ve waited in your cell, the punishment for your crimes has been determined. Unable to be crucified as a Roman citizen, it has been seen fit that you are to be publicly executed. May God have mercy on your soul.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14502, "fields": { "priority": 0, "description": "You anxiously arrive at the synagogue, clad in nondescript robes which cloak your face. A man is preaching a sermon about the life of Jesus to the audience. followed by partaking in a feast of bread and wine. His words sting your ears – they are the words which you persecuted for years, yet now know are true.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14507, "fields": { "priority": 0, "description": "Suddenly, a shout rises over the clamor as a man pushes forwards through the crowd! He levels an accusing finger at you and declares \"He is the one who has persecuted us!\". The congregation is thrown into a quick frenzy – you need to act fast.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14514, "fields": { "priority": 0, "description": "Several months have passed since your narrow escape from the synagogue, but the word of Christ has not stopped burning in your heart. Almost as if driven by a higher force, you begin to wildly proclaim the gospel across the city, catching the attention of the people – and of the local officials and the governor of Damascus, who put out a warrant for your arrest. Your crime, heresy, is a charge that garners the death penalty.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14519, "fields": { "priority": 0, "description": "Several months have passed since your narrow escape from the synagogue, but the word of Christ has not stopped burning in your heart. Almost as if driven by a higher force, you begin to wildly proclaim the gospel across the city, catching the attention of the people – and of the local officials and the governor of Damascus, who put out a warrant for your arrest. Your crime, heresy, is a charge that garners the death penalty.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14524, "fields": { "priority": 0, "description": "The least of your apostles, Paul, speaks in tongues and prophesizes in your name to spread the good news. He asks you for guidance, for a lesson to teach his unbelieving yet curious students. What will you reveal to him?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14530, "fields": { "priority": 0, "description": "33AD. It is the week of Passover. The wine in your cup tastes divine, and the bread is flavorful and well-made – as well as any last meal could be, for you know your end is coming swiftly. Yet, even beyond death, you plan to make this dinner and your memory last until the end of time.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14536, "fields": { "priority": 0, "description": "While you’ve waited in your cell, the punishment for your crimes has been determined. Unable to be crucified as a Roman citizen, it has been seen fit that you shall be taken from house arrest and indefinitely sent to a dungeon unable to communicate with the outside world. May God have mercy on your soul.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14538, "fields": { "priority": 0, "description": "You receive a prayer from the least of your apostles, Paul. He informs you of the situation of the fleshly in Corinth. They have been consumed by their desires and stray from your teachings. What will you tell Paul to save the Corinthians?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14564, "fields": { "priority": 0, "description": "The troubles of home behind you, you embark on a journey across the Mediterranean Sea. With modest equipment and funds, future mission efforts on the journey will surely open themselves to you. First, though, you arrive in Philippi to preach the gospel to men and women who have only briefly and confusingly interacted with Jews before. How will you break the ice with them?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14571, "fields": { "priority": 0, "description": "The troubles of home behind you, you embark on a journey across the Mediterranean Sea with bountiful equipment and funds, surely building a foundation to future mission efforts on the journey. First, though, you arrive in Philippi to preach the gospel to men and women who have only briefly and confusingly interacted with Jews before. How will you break the ice with them?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14672, "fields": { "priority": 0, "description": "While with your congregation in Antioch, you find that Peter and other men from Jerusalem have arrived, preaching to Jews in the city. Upon discovering your presence, they are outraged that you eat with gentiles and violate Jewish law. How will you defuse this tense situation?", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14800, "fields": { "priority": 0, "description": "While you’ve waited in your cell, the punishment for your crimes has been determined. Unable to be crucified as a Roman citizen, it has been seen fit that you are to be publicly executed. May God have mercy on your soul.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14803, "fields": { "priority": 0, "description": "You are on your way to be baptized by fellow local Judean preacher, John, on the banks of the river Jordan. Already you feel the sense that this is a journey of great importance to you.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14808, "fields": { "priority": 0, "description": "Shortly before you get too committed to your preaching, you decide to call a group of apostles. How many, and of what sort? Surely they will carry your message on and learn from you.", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14814, "fields": { "priority": 0, "description": "You're well into your preaching now, and your disciples are noted among the many religious groups in Jerusalem for not washing their hands before eating. You're coming under heat from the Pharisees and their scribes!\n", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14821, "fields": { "priority": 0, "description": "Your preaching has gone too far! While praying in Gethsemane, one of your trusted apostles, Judas, has betrayed you and handed you over to Roman authorities! You now stand before Prefect of Judea, Pontius Pilate. He asks you, \"Are you the King of the Jews?\"", "likelihood": 1 } }, { "model": "campaign_trail.question", "pk": 14828, "fields": { "priority": 0, "description": "You lay dying on the cross, your life fading away from you. You awake to find yourself alive once more, in a new resurrected body, surely the work of your Father. As you visit your disciples reborn, you decide to make one last stop to meet with one of the worst persecutors of your disciples – Saul of Tarsus.", "likelihood": 1 } } ] campaignTrail_temp.answers_json = [ { "model": "campaign_trail.answer", "pk": 4120, "fields": { "question": 609, "description": "I will explain to Peter the urgency of meeting with James. Christ himself spoke to me and said that I must preach to the gentiles, and the church's approval is a step on my path." } }, { "model": "campaign_trail.answer", "pk": 4121, "fields": { "question": 609, "description": "It is my best interest to watch and learn. I am but a newcomer and an exile from God, and I will tell Peter the honor I would feel in meeting the Lord’s brother." } }, { "model": "campaign_trail.answer", "pk": 4122, "fields": { "question": 609, "description": "My mission brought me to this place, but this is purely a religious exercise to me. I will explain my desire to meet James and pray with him, as a sincere friend and brother." } }, { "model": "campaign_trail.answer", "pk": 4124, "fields": { "question": 610, "description": "I will seek out this Cephas and tell him the story of my meeting with Jesus. Surely a man so close to God would take keen interest in my turning." } }, { "model": "campaign_trail.answer", "pk": 4125, "fields": { "question": 610, "description": "There is no need to make a journey so far. The road is treacherous and long, and I will instead turn to the local community in Damascus to worship." } }, { "model": "campaign_trail.answer", "pk": 4127, "fields": { "question": 611, "description": "There are brothers in Christ here who know me from my teachings, and surely they would not turn me away if I seek their aid in fleeing the city." } }, { "model": "campaign_trail.answer", "pk": 4130, "fields": { "question": 613, "description": "Here seems as good a place to stop as any. We shall live in Thessaloniki for a time while l work for my bread and preach the basics of the gospel." } }, { "model": "campaign_trail.answer", "pk": 4131, "fields": { "question": 613, "description": "I will place a special emphasis on the return of Christ and the undoing of the world it will have. The first shall be last, and those who follow Christ in this life will be rewarded in the next – poor or uneducated, we are all brothers in his word." } }, { "model": "campaign_trail.answer", "pk": 4137, "fields": { "question": 616, "description": "I will seek divine revelation on the matter for their enlightenment and my own. What exactly happened to the Lord on that night?" } }, { "model": "campaign_trail.answer", "pk": 4138, "fields": { "question": 616, "description": "I will relay what I recall of the tale which I myself was told – that Christ met with his apostles for a final dinner before he was arrested and crucified." } }, { "model": "campaign_trail.answer", "pk": 4139, "fields": { "question": 616, "description": "The importance lies not in the story, but the unity of Christ’s body as displayed by the meeting of the congregation." } }, { "model": "campaign_trail.answer", "pk": 4147, "fields": { "question": 620, "description": "We must be direct and simple – our paschal lamb, Christ, has been sacrificed! The law has been fulfilled and there is no need for the Philippians to follow the rules they know Jews to follow." } }, { "model": "campaign_trail.answer", "pk": 4148, "fields": { "question": 620, "description": "I will tell the story of creation to the Philippians – how the transgression of Adam led to a curse of mankind, and that Christ’s sacrifice has brought the redemption of all mankind." } }, { "model": "campaign_trail.answer", "pk": 4149, "fields": { "question": 620, "description": "I can further distance myself from Judaism by emphasizing the power of baptism and the working of the spirit of Christ in believers, not the Hebrew scriptures." } }, { "model": "campaign_trail.answer", "pk": 4188, "fields": { "question": 636, "description": "A good follower of Christ should be among the people and rewarded by them. Barnabas and I have no desire to be funded by the brethren in Antioch – we will work for our living no matter where we land." } }, { "model": "campaign_trail.answer", "pk": 4189, "fields": { "question": 636, "description": "The word of Christ cannot hope to be spread on a meager budget. Barnabas and I hope to receive some funding for our efforts – it will aid our travels and allow us to further concentrate on that which is important." } }, { "model": "campaign_trail.answer", "pk": 4195, "fields": { "question": 638, "description": "I will boast of my successes in Crete and across Anatolia. I have traveled the world, spreading the word of Christ, and have personally converted thousands. It is a matter of pride as much as it is a matter of truth." } }, { "model": "campaign_trail.answer", "pk": 4199, "fields": { "question": 639, "description": "I was once a tent-maker, and there I shall work in my trade. My work will make me an honest living, and my preaching on the side shall spread my name among the converts." } }, { "model": "campaign_trail.answer", "pk": 4200, "fields": { "question": 639, "description": "I will commit myself fully to the gospel in Antioch, and I will earn money from it. This way, I can spread the word of Christ as clear and far as possible." } }, { "model": "campaign_trail.answer", "pk": 4201, "fields": { "question": 639, "description": "While I work in my trade as a tent-maker, I must make connections with the believers-in-Christ in Antioch. It is essential that I be accepted by others before preaching my own gospel." } }, { "model": "campaign_trail.answer", "pk": 14475, "fields": { "question": 611, "description": "I cannot go to the churches – they will surely be searching for me there. I must disguise myself and make an escape from the city by my lonesome, on foot." } }, { "model": "campaign_trail.answer", "pk": 14476, "fields": { "question": 637, "description": "These false brothers do attempt to turn you from my words! Titus, though once a gentile, has firmly converted to our faith – and it is my word which converted him! Truly I must insist upon my gospel to the leaders." } }, { "model": "campaign_trail.answer", "pk": 14477, "fields": { "question": 618, "description": "Let us work and save for our travel. No amount of funding can be too much.\n" } }, { "model": "campaign_trail.answer", "pk": 14478, "fields": { "question": 617, "description": "Peter was more than pleased to share meals with the gentiles when he arrived, but look how his words change and turn when company follows him! This hypocrite should not be allowed to stop our mission to turn these disbelievers towards Christ." } }, { "model": "campaign_trail.answer", "pk": 14479, "fields": { "question": 613, "description": "Christ spoke to me on that day years ago, and since then I have held a gift for tongues and prophesying which the Thessalonians will surely appreciate." } }, { "model": "campaign_trail.answer", "pk": 14481, "fields": { "question": 619, "description": "I will emphasize the message of Christ's crucifixion and resurrection, for it is the power of God unto salvation and the liberation of mankind from its fleshly rules." } }, { "model": "campaign_trail.answer", "pk": 14482, "fields": { "question": 615, "description": "The congregation is confused. I will dictate a reply with my scribe: \"Then we who are alive, who are left, will be caught up in the clouds together with them to meet the Lord in the air, and so we will be with the Lord forever. Therefore encourage one another with these words.\"" } }, { "model": "campaign_trail.answer", "pk": 14483, "fields": { "question": 614, "description": "Preach! I must gather the gentiles in Antioch, for the Lord will not return until the full number of the gentiles has come in." } }, { "model": "campaign_trail.answer", "pk": 14484, "fields": { "question": 622, "description": "I will place emphasis on the gentile part of our mission – the freedom that comes with Christ and the lack of Jewish rites which forebear acceptance." } }, { "model": "campaign_trail.answer", "pk": 14485, "fields": { "question": 621, "description": "It is wonderful to meet Apollos! I wish him the best on his journey and shall have a quick theological discussion with him." } }, { "model": "campaign_trail.answer", "pk": 14486, "fields": { "question": 640, "description": "My teachings have been warped and misunderstood! \"Has Christ been divided? Was Paul crucified for you? Or were you baptized in the name of Paul? What then is Apollos? What is Paul? Servants through whom you came to believe, as the Lord assigned to each. I planted, Apollos watered, but God gave the growth.\"" } }, { "model": "campaign_trail.answer", "pk": 14487, "fields": { "question": 641, "description": "Slave or free means nothing in Christ! \"Were you a slave when called? Do not be concerned about it. Even if you can gain your freedom, make the most of it. For whoever was called in the Lord as a slave is a freed person belonging to the Lord, just as whoever was free when called is a slave belonging to Christ.\"" } }, { "model": "campaign_trail.answer", "pk": 14488, "fields": { "question": 647, "description": "I must strike fear into them. \"I am writing to you not to associate with anyone who bears the name of brother or sister who is sexually immoral or greedy or an idolater, reviler, drunkard, or swindler. Do not even eat with such a one. God will judge those outside.\"" } }, { "model": "campaign_trail.answer", "pk": 14489, "fields": { "question": 646, "description": "This constant battle exhausts me! I have every right as a minister of Christ that they do. \"Are they Hebrews? So am I. Are they Israelites? So am I. Are they descendants of Abraham? So am I. Are they ministers of Christ? I am talking like a madman—I am a better one: with far greater labors, far more imprisonments, with countless floggings, and often near death.\"" } }, { "model": "campaign_trail.answer", "pk": 14490, "fields": { "question": 651, "description": "I will accept my fate, I am more than eager to be with the Lord. I am a humble man." } }, { "model": "campaign_trail.answer", "pk": 14491, "fields": { "question": 650, "description": "This whole visit with those \"super-apostles\" is but a waste when they have opposed me so thoroughly before. I can spend my time more wisely by preaching in Jerusalem among my own people." } }, { "model": "campaign_trail.answer", "pk": 14492, "fields": { "question": 645, "description": "This is an excellent opportunity to extend my gospel to Spain through Rome. I will dictate a letter detailing my gospel, and the Romans shall find it most agreeable." } }, { "model": "campaign_trail.answer", "pk": 14493, "fields": { "question": 642, "description": "I cannot stand it! You foolish Galatians! Who has bewitched you? I have to dictate a letter to the whole region. I will begin with a detail of my own conversion, then ask if they have not heard of the story of Abraham? A man righteous through faith! Not circumcision. Lord, I wish those who unsettle you would castrate themselves!" } }, { "model": "campaign_trail.answer", "pk": 14495, "fields": { "question": 14494, "description": "I am a Roman citizen! I have the right to appeal to Nero and be tried as a Roman in Rome." } }, { "model": "campaign_trail.answer", "pk": 14497, "fields": { "question": 14496, "description": "The Philippians need not worry. I care little for if I live or die. Remember to be humble and give to the poor. There is little else of value in the flesh." } }, { "model": "campaign_trail.answer", "pk": 14500, "fields": { "question": 14498, "description": "I ask Philemon for the immediate release of Onesimus upon his return. His work is done and he has been a fine servant for myself, as I am sure he has been for Philemon." } }, { "model": "campaign_trail.answer", "pk": 14501, "fields": { "question": 14499, "description": "\"From now on, let no one make trouble for me, for I carry the marks of Jesus branded on my body.\"" } }, { "model": "campaign_trail.answer", "pk": 14503, "fields": { "question": 14502, "description": "To insert myself would only bring attention to me in a place where I should do anything but. I will sit back and watch, explaining my interest to the congregation and that I am not yet worthy to be partake." } }, { "model": "campaign_trail.answer", "pk": 14505, "fields": { "question": 14502, "description": "His words are true, and though I yet hardly know them, I will explain myself to the man who told the sermon. I wish to participate in this feast and be like Christ." } }, { "model": "campaign_trail.answer", "pk": 14508, "fields": { "question": 14507, "description": "I know nothing of what this man is talking about. Perhaps he is mistaken? I am but a humble worshiper..." } }, { "model": "campaign_trail.answer", "pk": 14510, "fields": { "question": 14507, "description": "He is right. I admit, shamefully, that I was the one who persecuted you – but I have seen the light of Christ myself. I now praise the Lord, and I abstain from the lashings I once gave to those in Christ or violence of any kind. On this I swear." } }, { "model": "campaign_trail.answer", "pk": 14511, "fields": { "question": 14507, "description": "I admit that I am who you say I am. I have repented for my wicked deeds and persecution of that which is holy, but I understand that I am not welcome among those who I assaulted. I will go now and trouble you no longer." } }, { "model": "campaign_trail.answer", "pk": 14515, "fields": { "question": 14514, "description": "The brethren here must help me! I will inform them of my situation and beg for their mercy and aid. Surely they cannot leave a fellow brother in Christ at the mercy of the authorities?" } }, { "model": "campaign_trail.answer", "pk": 14517, "fields": { "question": 14514, "description": "I will attempt to escape the authorities on foot. May God deliver me safely from these fiends!" } }, { "model": "campaign_trail.answer", "pk": 14520, "fields": { "question": 14519, "description": "The brethren here must help me! I will inform them of my situation and beg for their mercy and aid. Surely they cannot leave a fellow brother in Christ at the mercy of the authorities?" } }, { "model": "campaign_trail.answer", "pk": 14522, "fields": { "question": 14519, "description": "I will attempt to escape the authorities on foot. May God deliver me safely from these fiends!" } }, { "model": "campaign_trail.answer", "pk": 14525, "fields": { "question": 14524, "description": "Paul, my delightful servant, tell the Thessalonians of the day of my return, the sounding of the trumpet and the destruction which shall fall upon non-believers." } }, { "model": "campaign_trail.answer", "pk": 14526, "fields": { "question": 14524, "description": "Paul, apostle of Christ, show the Thessalonians the life free from fleshly desires and sin they must exit from." } }, { "model": "campaign_trail.answer", "pk": 14531, "fields": { "question": 14530, "description": "I shall break some bread and take my cup of wine. \"This is my body, which is for you; do this in remembrance of me. This cup is the new covenant in my blood; do this, whenever you drink it, in remembrance of me.\"" } }, { "model": "campaign_trail.answer", "pk": 14532, "fields": { "question": 14530, "description": "I shall break some bread and take my cup of wine. \"Take; this is my body. This is my blood of the covenant, which is poured out for many. Truly I tell you, I will never again drink of the fruit of the vine until that day when I drink it new in the kingdom of God.”" } }, { "model": "campaign_trail.answer", "pk": 14533, "fields": { "question": 14530, "description": "I shall break some bread and take my cup of wine. \"This is my body, which is for you; do this in remembrance of me. This cup is my blood; do this, whenever you drink it, in remembrance of me. For those who eat and drink without discerning the body of Christ eat and drink judgment on themselves.\"" } }, { "model": "campaign_trail.answer", "pk": 14537, "fields": { "question": 14536, "description": "\"I am content with weaknesses, insults, hardships, persecutions, and calamities for the sake of Christ, for whenever I am weak, then I am strong.\"" } }, { "model": "campaign_trail.answer", "pk": 14539, "fields": { "question": 14538, "description": "Paul, I foretell destruction and death upon the Corinthians should they fail to submit to my will – both in this life and the next." } }, { "model": "campaign_trail.answer", "pk": 14541, "fields": { "question": 14540, "description": "I’ll put total emphasis on creating a new church. We must create a stronghold here.\n" } }, { "model": "campaign_trail.answer", "pk": 14542, "fields": { "question": 14540, "description": "I’ll stop by Philippi when I have time. It has been some time since I was last there." } }, { "model": "campaign_trail.answer", "pk": 14543, "fields": { "question": 14540, "description": "I’ll stop by Thessaloniki if possible. They seemed most interested in Christ's word when I was there last." } }, { "model": "campaign_trail.answer", "pk": 14544, "fields": { "question": 14540, "description": "It is worthwhile to water what I have planted. I will visit and preach in Thessaloniki and Philippi." } }, { "model": "campaign_trail.answer", "pk": 14546, "fields": { "question": 638, "description": "I will lay down the gospel I preach upon them the very same way I do upon the gentiles. When they hear its honest zeal and note how it aligns with their own, they will be convinced of my sincerity." } }, { "model": "campaign_trail.answer", "pk": 14547, "fields": { "question": 638, "description": "It will come off conceited and desperate if I was to burnish my accomplishments to the apostles directly. My allies, Barnabas and Titus, both honest men whose character is well known, will serve as ample surrogates." } }, { "model": "campaign_trail.answer", "pk": 14550, "fields": { "question": 637, "description": "I cannot turn from the gospel which was revealed to me, but I too cannot let my ministry end over grievance and suspicion. Titus must be circumcised." } }, { "model": "campaign_trail.answer", "pk": 14551, "fields": { "question": 637, "description": "These men are paranoid fools who would throw away the word of Christ over misunderstanding and prejudice. We will not bother with their corrupted money or sentiment. " } }, { "model": "campaign_trail.answer", "pk": 14555, "fields": { "question": 618, "description": "Let us focus on preaching in Antioch for the meanwhile. These are fertile grounds for Christ's word." } }, { "model": "campaign_trail.answer", "pk": 14559, "fields": { "question": 617, "description": "Peter is a hypocrite, but those within the Church respect him so that my accusations would fail to pierce their ears. I must defend my own rights as an apostle to the gentiles to eat with them." } }, { "model": "campaign_trail.answer", "pk": 14560, "fields": { "question": 617, "description": "Peter is a lost cause. I will try to win over Barnabas by appealing to our long companionship and his hypocrisy." } }, { "model": "campaign_trail.answer", "pk": 14565, "fields": { "question": 14564, "description": "We must be direct and simple – our paschal lamb, Christ, has been sacrificed! The law has been fulfilled and there is no need for the Philippians to follow the rules they know Jews to follow." } }, { "model": "campaign_trail.answer", "pk": 14566, "fields": { "question": 14564, "description": "I will tell the story of creation to the Philippians – how the transgression of Adam led to a curse of mankind, and that Christ’s sacrifice has brought the redemption of all mankind." } }, { "model": "campaign_trail.answer", "pk": 14567, "fields": { "question": 14564, "description": "I can further distance myself from Judaism by emphasizing the power of baptism and the working of the spirit of Christ in believers, not the Hebrew scriptures." } }, { "model": "campaign_trail.answer", "pk": 14572, "fields": { "question": 14571, "description": "We must be direct and simple – our paschal lamb, Christ, has been sacrificed! The law has been fulfilled and there is no need for the Philippians to follow the rules they know Jews to follow." } }, { "model": "campaign_trail.answer", "pk": 14573, "fields": { "question": 14571, "description": "I will tell the story of creation to the Philippians – how the transgression of Adam led to a curse of mankind, and that Christ’s sacrifice has brought the redemption of all mankind." } }, { "model": "campaign_trail.answer", "pk": 14574, "fields": { "question": 14571, "description": "I can further distance myself from Judaism by emphasizing the power of baptism and the working of the spirit of Christ in believers, not the Hebrew scriptures." } }, { "model": "campaign_trail.answer", "pk": 14579, "fields": { "question": 619, "description": "I will focus on the concept of God's wisdom, revealing the hidden mysteries through the Holy Spirit which is not of this world. Many phenomena unexplained by man's scientists can be understood through Christ." } }, { "model": "campaign_trail.answer", "pk": 14581, "fields": { "question": 619, "description": " I will stress the importance of unity within the body of Christ, emphasizing that all believers are part of one body with diverse gifts and functions." } }, { "model": "campaign_trail.answer", "pk": 14582, "fields": { "question": 619, "description": "I will encourage believers to live a life of generous giving, supporting the needs of fellow believers and those in need, as an expression of God's grace." } }, { "model": "campaign_trail.answer", "pk": 14586, "fields": { "question": 14585, "description": "The Jews in Corinth are not yet known by Christ, which will be changed with further ministry. They are busied by their focus on fleshly laws which no longer apply to man. I will explain the stark line between the Jews of Christ and those of the flesh." } }, { "model": "campaign_trail.answer", "pk": 14587, "fields": { "question": 14585, "description": "The Corinthians are confused. We are little different than the Jews of Corinth other than that we are known by Christ and they are not. I soon see the entirety of Israel returning to the fold." } }, { "model": "campaign_trail.answer", "pk": 14591, "fields": { "question": 615, "description": "Not only is the congregation confused that the Lord will bring all who have fallen asleep with him, but indeed many shall perish before his return. \"Let no one deceive you in any way, for that day will not come unless the rebellion comes first and the lawless one is revealed, the one destined for destruction.\"" } }, { "model": "campaign_trail.answer", "pk": 14594, "fields": { "question": 614, "description": "Antioch is but a small jewel in comparison to the wonder of Jerusalem. I will head down the road to the city and focus on preaching to Jews and pagans there." } }, { "model": "campaign_trail.answer", "pk": 14596, "fields": { "question": 622, "description": "Soon Christ will return, and there will be eternal life for those who follow him and destruction for those who do not turn from idols!" } }, { "model": "campaign_trail.answer", "pk": 14597, "fields": { "question": 622, "description": "Christ grants wisdom and truth to all mankind, and does clearly explain those phenomena which man alone cannot understand." } }, { "model": "campaign_trail.answer", "pk": 14602, "fields": { "question": 621, "description": "Surely a brother in Christ could use information on my own mission in Corinth. I wish him the best on his journey and shall swiftly tell him about those Corinthians who have turned to gospel as well." } }, { "model": "campaign_trail.answer", "pk": 14603, "fields": { "question": 621, "description": "Truly the Lord has seen it fit to have us cross paths. I wish him the best on his journey and must be on my way." } }, { "model": "campaign_trail.answer", "pk": 14607, "fields": { "question": 640, "description": "Apollos, that false brother! He has taken my congregation from me! \"Apollos is nothing, but obeying the commandments of God is everything. I think that I am not in the least inferior to Apollos.\"" } }, { "model": "campaign_trail.answer", "pk": 14608, "fields": { "question": 640, "description": "There's no use focusing on Apollos. He preaches as I do. Cephas, on the other hand, fundamentally misunderstands Christ. \"A person is a Jew who is one inwardly, and circumcision is a matter of the heart, by the Spirit, not the written code. Such a person receives praise not from humans but from God.\"" } }, { "model": "campaign_trail.answer", "pk": 14612, "fields": { "question": 641, "description": "It is repugnant to God to own a brother! \"Do not become slaves of humans. Take one no longer as a slave but more than a slave, a beloved brother.\"" } }, { "model": "campaign_trail.answer", "pk": 14616, "fields": { "question": 647, "description": "I cannot demotivate the congregation entirely. There is always repentance, which they must take. \"Do you despise the riches of his kindness and forbearance and patience? Do you not realize that God’s kindness is meant to lead you to repentance?\"" } }, { "model": "campaign_trail.answer", "pk": 14617, "fields": { "question": 647, "description": "I must consult the Lord on this matter before I act." } }, { "model": "campaign_trail.answer", "pk": 14626, "fields": { "question": 646, "description": "Those fools, I have told them that I received my gospel from nobody but Christ himself. These false brothers are nothing to me!" } }, { "model": "campaign_trail.answer", "pk": 14627, "fields": { "question": 646, "description": "I cannot write to them in heated tempers. Instead I shall excite their faith with a prayer and simple restatement of the gospel. They must return to the fold which they know is right" } }, { "model": "campaign_trail.answer", "pk": 14631, "fields": { "question": 645, "description": "This is an excellent opportunity to build up the church in Rome, one of the great cities of the world. I have no plans to visit, but a statement of how to keep the faith, to always pray, and to be serious and humble shall do nicely in appealing to them." } }, { "model": "campaign_trail.answer", "pk": 14633, "fields": { "question": 645, "description": "I hope to establish a mission in Rome myself sometime, in fact. I could dictate a simple letter about my hopes to arrive and a basic outline of my gospel. " } }, { "model": "campaign_trail.answer", "pk": 14636, "fields": { "question": 642, "description": "We mustn't be rash. I will dictate a letter to the region, emphasizing almost entirely my whole conversion story and the traumas I have suffered as an apostle. Are only the Judaizers entitled to live off their gospel? Entitled to take wives?" } }, { "model": "campaign_trail.answer", "pk": 14637, "fields": { "question": 642, "description": "There is no use in doing anything about the barbaric Galatians, who have always been a militaristic and simple people. I will double down on my ministry here in Macedonia." } }, { "model": "campaign_trail.answer", "pk": 14640, "fields": { "question": 650, "description": "When I lay my entire portfolio to the leaders, showing I have worked humbly with no concern for my own life and only that of others, they will surely understand why I ask for some respect from Jerusalem." } }, { "model": "campaign_trail.answer", "pk": 14641, "fields": { "question": 650, "description": "I must submit to Jerusalem that, for all the trouble they have caused me, we are ultimately one gospel and must remember that." } }, { "model": "campaign_trail.answer", "pk": 14645, "fields": { "question": 651, "description": "I may not be able to escape this show trial, but I can stand up for the people of Judea and denounce Roman occupation of the territory." } }, { "model": "campaign_trail.answer", "pk": 14646, "fields": { "question": 651, "description": "There is little I can do to change my fate, but I shall at least be able to testify what the Lord would want. I will give a confession of faith at the hearing." } }, { "model": "campaign_trail.answer", "pk": 14650, "fields": { "question": 14494, "description": "There is no use. I shall remain in Jerusalem." } }, { "model": "campaign_trail.answer", "pk": 14651, "fields": { "question": 14494, "description": "My safety is at risk here in Jerusalem. The Judeans must transfer me to Rome." } }, { "model": "campaign_trail.answer", "pk": 14652, "fields": { "question": 14494, "description": "These charges are confusing. Some are for crimes against the Empire and others are for transgressions against the temple and Judea. If I am to be charged for violating Roman law, the Romans should hold my trial." } }, { "model": "campaign_trail.answer", "pk": 14658, "fields": { "question": 14496, "description": "The Philippians shouldn’t worry, I foresee my release, for I have no crime. Let me finish with a reminder to render unto Caesar what is Caesar’s and to hold respect for the Romans." } }, { "model": "campaign_trail.answer", "pk": 14659, "fields": { "question": 14496, "description": "I expect my demise. The Philippians must learn to grow without me. I thank them for their generosity in my whole mission and ask them to never let the church be divided." } }, { "model": "campaign_trail.answer", "pk": 14663, "fields": { "question": 14498, "description": "I will remind Philemon that we are all free in Christ and that, although Onesimus is a slave in the flesh, he is returning to Philemon as a brother." } }, { "model": "campaign_trail.answer", "pk": 14669, "fields": { "question": 14538, "description": "Paul, I will spare the righteous and destroy the evil, their time will come. The Lord laughs at the wicked, for he sees that their day is coming." } }, { "model": "campaign_trail.answer", "pk": 14673, "fields": { "question": 14672, "description": "I am no different than these men who call themselves followers of Christ, though I eat and preach with gentiles. I have seen Christ, I have been baptized by Christ, and I am devoted to Christ in all ways. In this we are the same." } }, { "model": "campaign_trail.answer", "pk": 14674, "fields": { "question": 14672, "description": "Did Christ's death not absolve man from these punitive laws? Christ’s death has freed us from these cruel and backwards laws. I merely enact his will by embracing this change." } }, { "model": "campaign_trail.answer", "pk": 14801, "fields": { "question": 14800, "description": "Father, forgive them; for they know not what they do." } }, { "model": "campaign_trail.answer", "pk": 14804, "fields": { "question": 14803, "description": "I will be baptized by this \"John.\" He is my Elijah, as scripture says: \"See, I will send you the prophet Elijah before the great and terrible day of the Lord comes.\"" } }, { "model": "campaign_trail.answer", "pk": 14806, "fields": { "question": 14803, "description": "I would have much more to gain by staying in Galilee and getting an early start to my ministry." } }, { "model": "campaign_trail.answer", "pk": 14809, "fields": { "question": 14808, "description": "I will call twelve, one for each tribe of Israel: Peter, John, James and nine other minor apostles." } }, { "model": "campaign_trail.answer", "pk": 14810, "fields": { "question": 14808, "description": "I will call twelve, one for each tribe of Israel: Peter, John, Mary and nine other minor apostles." } }, { "model": "campaign_trail.answer", "pk": 14815, "fields": { "question": 14814, "description": "The Pharisees reject the commandment of God in order to keep their tradition! For Moses said, ‘Honor your father and your mother,’ and, ‘Whoever speaks evil of father or mother must surely die.’ But you say that if anyone tells father or mother, ‘Whatever support you might have had from me is Corban!'" } }, { "model": "campaign_trail.answer", "pk": 14816, "fields": { "question": 14814, "description": "I shall pay them no mind. They know only of the flesh, not that what comes from above." } }, { "model": "campaign_trail.answer", "pk": 14817, "fields": { "question": 14814, "description": "Ye hypocritical followers of mine, I never knew you! I shall mandate such washing of hands. \"For verily I say unto you, Till heaven and earth pass, one jot or one tittle shall in no wise pass from the law.\"" } }, { "model": "campaign_trail.answer", "pk": 14822, "fields": { "question": 14821, "description": "You say so." } }, { "model": "campaign_trail.answer", "pk": 14823, "fields": { "question": 14821, "description": "My kingdom is not of this world: if my kingdom were of this world, then would my servants fight, that I should not be delivered to the Jews: but now is my kingdom not from hence." } }, { "model": "campaign_trail.answer", "pk": 14824, "fields": { "question": 14821, "description": "It is I, I am the way and the truth and the life." } }, { "model": "campaign_trail.answer", "pk": 14829, "fields": { "question": 14828, "description": "He is of no use to me. May my Father deal with him, not I." } }, { "model": "campaign_trail.answer", "pk": 14830, "fields": { "question": 14828, "description": "I shall approach this sinful man. \"Saul, Saul, why do you persecute me?\"" } } ] campaignTrail_temp.states_json = [ { "model": "campaign_trail.state", "pk": 384, "fields": { "name": "Galatia", "abbr": "CT", "electoral_votes": 0, "popular_votes": 1200, "poll_closing_time": 90, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 386, "fields": { "name": "Corinth", "abbr": "GA", "electoral_votes": 0, "popular_votes": 2000, "poll_closing_time": 90, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 393, "fields": { "name": "Philippi", "abbr": "MA", "electoral_votes": 0, "popular_votes": 1000, "poll_closing_time": 90, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 397, "fields": { "name": "Antioch", "abbr": "NH", "electoral_votes": 0, "popular_votes": 1000, "poll_closing_time": 90, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 400, "fields": { "name": "Thessaloniki", "abbr": "NC", "electoral_votes": 0, "popular_votes": 1000, "poll_closing_time": 60, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 403, "fields": { "name": "Ephesus", "abbr": "RI", "electoral_votes": 0, "popular_votes": 1000, "poll_closing_time": 90, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 404, "fields": { "name": "Rome", "abbr": "SC", "electoral_votes": 0, "popular_votes": 1000, "poll_closing_time": 0, "winner_take_all_flg": 1, "election": 13 } }, { "model": "campaign_trail.state", "pk": 406, "fields": { "name": "Jerusalem", "abbr": "VT", "electoral_votes": 0, "popular_votes": 5000, "poll_closing_time": 180, "winner_take_all_flg": 1, "election": 13 } } ] campaignTrail_temp.issues_json = [ { "model": "campaign_trail.issue", "pk": 47, "fields": { "name": "Circumcision", "description": "'", "stance_1": "Supports", "stance_desc_1": "'", "stance_2": "Supports", "stance_desc_2": "'", "stance_3": "Supports", "stance_desc_3": "'", "stance_4": "Open", "stance_desc_4": "'", "stance_5": "Opposes", "stance_desc_5": "'", "stance_6": "Opposes", "stance_desc_6": "'", "stance_7": "Opposes", "stance_desc_7": "'", "election": 13 } }, { "model": "campaign_trail.issue", "pk": 48, "fields": { "name": "Immorality", "description": "'", "stance_1": "Prevalent", "stance_desc_1": "'", "stance_2": "Prevalent", "stance_desc_2": "'", "stance_3": "Immoral", "stance_desc_3": "'", "stance_4": "Immoral", "stance_desc_4": "'", "stance_5": "Moral", "stance_desc_5": "'", "stance_6": "Pure", "stance_desc_6": "'", "stance_7": "Pure", "stance_desc_7": "'", "election": 13 } }, { "model": "campaign_trail.issue", "pk": 49, "fields": { "name": "Judaism", "description": "'", "stance_1": "Anti-Semitic", "stance_desc_1": "'", "stance_2": "Anti-Semitic", "stance_desc_2": "'", "stance_3": "Hesitant", "stance_desc_3": "'", "stance_4": "Hesitant", "stance_desc_4": "'", "stance_5": "Diverse", "stance_desc_5": "'", "stance_6": "Jewish", "stance_desc_6": "'", "stance_7": "Jewish", "stance_desc_7": "'", "election": 13 } }, { "model": "campaign_trail.issue", "pk": 50, "fields": { "name": "Greek Philosophy", "description": "'", "stance_1": "Entrenched", "stance_desc_1": "'", "stance_2": "Entrenched", "stance_desc_2": "'", "stance_3": "Leaning Towards", "stance_desc_3": "'", "stance_4": "Foreign", "stance_desc_4": "'", "stance_5": "Opposes", "stance_desc_5": "'", "stance_6": "Opposes", "stance_desc_6": "'", "stance_7": "Opposes", "stance_desc_7": "'", "election": 13 } }, { "model": "campaign_trail.issue", "pk": 51, "fields": { "name": "Slavery", "description": "'", "stance_1": "Hunter-Gatherers", "stance_desc_1": "'", "stance_2": "Slave Society", "stance_desc_2": "'", "stance_3": "Slave Society", "stance_desc_3": "'", "stance_4": "Feudalism", "stance_desc_4": "'", "stance_5": "Capitalism", "stance_desc_5": "'", "stance_6": "Socialism", "stance_desc_6": "'", "stance_7": "Communism", "stance_desc_7": "'", "election": 13 } } ] campaignTrail_temp.state_issue_score_json = [ { "model": "campaign_trail.state_issue_score", "pk": 1875, "fields": { "state": 384, "issue": 47, "state_issue_score": 0.1, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1877, "fields": { "state": 386, "issue": 47, "state_issue_score": 0.1, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1884, "fields": { "state": 393, "issue": 47, "state_issue_score": 0.4, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1888, "fields": { "state": 397, "issue": 47, "state_issue_score": -0.6, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1891, "fields": { "state": 400, "issue": 47, "state_issue_score": 0.1, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1894, "fields": { "state": 403, "issue": 47, "state_issue_score": 0.35, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1895, "fields": { "state": 404, "issue": 47, "state_issue_score": 0.7, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1897, "fields": { "state": 406, "issue": 47, "state_issue_score": -0.7, "weight": 1.5 } }, { "model": "campaign_trail.state_issue_score", "pk": 1901, "fields": { "state": 384, "issue": 48, "state_issue_score": -0.5, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1903, "fields": { "state": 386, "issue": 48, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1910, "fields": { "state": 393, "issue": 48, "state_issue_score": -0.1, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1914, "fields": { "state": 397, "issue": 48, "state_issue_score": 0.3, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1917, "fields": { "state": 400, "issue": 48, "state_issue_score": -0.2, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1920, "fields": { "state": 403, "issue": 48, "state_issue_score": -0.45, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1921, "fields": { "state": 404, "issue": 48, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1923, "fields": { "state": 406, "issue": 48, "state_issue_score": 0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1927, "fields": { "state": 384, "issue": 49, "state_issue_score": 0.3, "weight": 0.1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1929, "fields": { "state": 386, "issue": 49, "state_issue_score": -0.1, "weight": 0.1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1936, "fields": { "state": 393, "issue": 49, "state_issue_score": -0.1, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1940, "fields": { "state": 397, "issue": 49, "state_issue_score": 0.2, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1943, "fields": { "state": 400, "issue": 49, "state_issue_score": -0.1, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1946, "fields": { "state": 403, "issue": 49, "state_issue_score": -0.33, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1947, "fields": { "state": 404, "issue": 49, "state_issue_score": -0.7, "weight": 0.1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1949, "fields": { "state": 406, "issue": 49, "state_issue_score": 0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1953, "fields": { "state": 384, "issue": 50, "state_issue_score": 0.1, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1955, "fields": { "state": 386, "issue": 50, "state_issue_score": -0.65, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1962, "fields": { "state": 393, "issue": 50, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1966, "fields": { "state": 397, "issue": 50, "state_issue_score": -0.333, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1969, "fields": { "state": 400, "issue": 50, "state_issue_score": -0.5, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1972, "fields": { "state": 403, "issue": 50, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1973, "fields": { "state": 404, "issue": 50, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1975, "fields": { "state": 406, "issue": 50, "state_issue_score": 0.3, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1979, "fields": { "state": 384, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1981, "fields": { "state": 386, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1988, "fields": { "state": 393, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1992, "fields": { "state": 397, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1995, "fields": { "state": 400, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1998, "fields": { "state": 403, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 1999, "fields": { "state": 404, "issue": 51, "state_issue_score": -0.7, "weight": 1 } }, { "model": "campaign_trail.state_issue_score", "pk": 2001, "fields": { "state": 406, "issue": 51, "state_issue_score": -0.7, "weight": 1 } } ] campaignTrail_temp.candidate_issue_score_json = [ { "model": "campaign_trail.candidate_issue_score", "pk": 524, "fields": { "candidate": 131, "issue": 47, "issue_score": 0.7 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 525, "fields": { "candidate": 131, "issue": 48, "issue_score": -0.25 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 526, "fields": { "candidate": 131, "issue": 49, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 527, "fields": { "candidate": 131, "issue": 50, "issue_score": -0.3 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 528, "fields": { "candidate": 131, "issue": 51, "issue_score": -0.55 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 529, "fields": { "candidate": 132, "issue": 47, "issue_score": -0.7 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 530, "fields": { "candidate": 132, "issue": 48, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 531, "fields": { "candidate": 132, "issue": 49, "issue_score": -0.15 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 532, "fields": { "candidate": 132, "issue": 50, "issue_score": 0.6 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 533, "fields": { "candidate": 132, "issue": 51, "issue_score": 0 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 534, "fields": { "candidate": 133, "issue": 47, "issue_score": 0 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 535, "fields": { "candidate": 133, "issue": 48, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 536, "fields": { "candidate": 133, "issue": 49, "issue_score": 0 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 537, "fields": { "candidate": 133, "issue": 50, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 538, "fields": { "candidate": 133, "issue": 51, "issue_score": 0.75 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 539, "fields": { "candidate": 134, "issue": 47, "issue_score": -0.65 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 540, "fields": { "candidate": 134, "issue": 48, "issue_score": 0 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 541, "fields": { "candidate": 134, "issue": 49, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 542, "fields": { "candidate": 134, "issue": 50, "issue_score": -0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 543, "fields": { "candidate": 134, "issue": 51, "issue_score": -0.6 } } ] campaignTrail_temp.running_mate_issue_score_json = [ { "model": "campaign_trail.candidate_issue_score", "pk": 544, "fields": { "candidate": 135, "issue": 47, "issue_score": -0.6 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 545, "fields": { "candidate": 135, "issue": 48, "issue_score": 0 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 546, "fields": { "candidate": 135, "issue": 49, "issue_score": 0.5 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 547, "fields": { "candidate": 135, "issue": 50, "issue_score": 0.1 } }, { "model": "campaign_trail.candidate_issue_score", "pk": 548, "fields": { "candidate": 135, "issue": 51, "issue_score": -0.55 } } ] campaignTrail_temp.candidate_state_multiplier_json = [ { "model": "campaign_trail.candidate_state_multiplier", "pk": 1431, "fields": { "candidate": 131, "state": 384, "state_multiplier": 0.1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1433, "fields": { "candidate": 131, "state": 386, "state_multiplier": 0.2 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1440, "fields": { "candidate": 131, "state": 393, "state_multiplier": 0.2 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1444, "fields": { "candidate": 131, "state": 397, "state_multiplier": 0.22 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1447, "fields": { "candidate": 131, "state": 400, "state_multiplier": 0.2 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1450, "fields": { "candidate": 131, "state": 403, "state_multiplier": 0.2 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1451, "fields": { "candidate": 131, "state": 404, "state_multiplier": 0.12 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1453, "fields": { "candidate": 131, "state": 406, "state_multiplier": 0.1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1457, "fields": { "candidate": 132, "state": 384, "state_multiplier": 0.2 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1459, "fields": { "candidate": 132, "state": 386, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1466, "fields": { "candidate": 132, "state": 393, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1470, "fields": { "candidate": 132, "state": 397, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1473, "fields": { "candidate": 132, "state": 400, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1476, "fields": { "candidate": 132, "state": 403, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1477, "fields": { "candidate": 132, "state": 404, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1479, "fields": { "candidate": 132, "state": 406, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1483, "fields": { "candidate": 133, "state": 384, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1485, "fields": { "candidate": 133, "state": 386, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1492, "fields": { "candidate": 133, "state": 393, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1496, "fields": { "candidate": 133, "state": 397, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1499, "fields": { "candidate": 133, "state": 400, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1502, "fields": { "candidate": 133, "state": 403, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1503, "fields": { "candidate": 133, "state": 404, "state_multiplier": 1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1505, "fields": { "candidate": 133, "state": 406, "state_multiplier": 0.01 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1509, "fields": { "candidate": 134, "state": 384, "state_multiplier": 0 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1511, "fields": { "candidate": 134, "state": 386, "state_multiplier": 0.1 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1518, "fields": { "candidate": 134, "state": 393, "state_multiplier": 0.05 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1522, "fields": { "candidate": 134, "state": 397, "state_multiplier": 0.05 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1525, "fields": { "candidate": 134, "state": 400, "state_multiplier": 0 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1528, "fields": { "candidate": 134, "state": 403, "state_multiplier": 0.05 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1529, "fields": { "candidate": 134, "state": 404, "state_multiplier": 0 } }, { "model": "campaign_trail.candidate_state_multiplier", "pk": 1531, "fields": { "candidate": 134, "state": 406, "state_multiplier": 0.05 } } ] campaignTrail_temp.answer_score_global_json = [ { "model": "campaign_trail.answer_score_global", "pk": 1968, "fields": { "answer": 4123, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.105 } }, { "model": "campaign_trail.answer_score_global", "pk": 1969, "fields": { "answer": 4123, "candidate": 131, "affected_candidate": 133, "global_multiplier": 0.18 } }, { "model": "campaign_trail.answer_score_global", "pk": 1971, "fields": { "answer": 4126, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 1973, "fields": { "answer": 4128, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_global", "pk": 1974, "fields": { "answer": 4128, "candidate": 131, "affected_candidate": 134, "global_multiplier": -50 } }, { "model": "campaign_trail.answer_score_global", "pk": 1977, "fields": { "answer": 4132, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 1978, "fields": { "answer": 4133, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 1981, "fields": { "answer": 4142, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.0025 } }, { "model": "campaign_trail.answer_score_global", "pk": 1982, "fields": { "answer": 4145, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.0025 } }, { "model": "campaign_trail.answer_score_global", "pk": 1984, "fields": { "answer": 4151, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.0025 } }, { "model": "campaign_trail.answer_score_global", "pk": 1985, "fields": { "answer": 4152, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 1986, "fields": { "answer": 4153, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.02 } }, { "model": "campaign_trail.answer_score_global", "pk": 1987, "fields": { "answer": 4188, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.098 } }, { "model": "campaign_trail.answer_score_global", "pk": 1988, "fields": { "answer": 4190, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 1989, "fields": { "answer": 4192, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.035 } }, { "model": "campaign_trail.answer_score_global", "pk": 1990, "fields": { "answer": 4194, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 1992, "fields": { "answer": 4196, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.03 } }, { "model": "campaign_trail.answer_score_global", "pk": 1995, "fields": { "answer": 4203, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 1996, "fields": { "answer": 4205, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 1997, "fields": { "answer": 4207, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.03 } }, { "model": "campaign_trail.answer_score_global", "pk": 1998, "fields": { "answer": 4208, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2002, "fields": { "answer": 4216, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.035 } }, { "model": "campaign_trail.answer_score_global", "pk": 2003, "fields": { "answer": 4217, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2004, "fields": { "answer": 4220, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 2005, "fields": { "answer": 4222, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 2011, "fields": { "answer": 4231, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.033 } }, { "model": "campaign_trail.answer_score_global", "pk": 2012, "fields": { "answer": 4233, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2013, "fields": { "answer": 4234, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2014, "fields": { "answer": 4235, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2015, "fields": { "answer": 4236, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2044, "fields": { "answer": 4189, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.07789 } }, { "model": "campaign_trail.answer_score_global", "pk": 2045, "fields": { "answer": 4190, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.03 } }, { "model": "campaign_trail.answer_score_global", "pk": 2046, "fields": { "answer": 4191, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.045 } }, { "model": "campaign_trail.answer_score_global", "pk": 2047, "fields": { "answer": 4193, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_global", "pk": 2048, "fields": { "answer": 4194, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 2049, "fields": { "answer": 4196, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2050, "fields": { "answer": 4197, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.025 } }, { "model": "campaign_trail.answer_score_global", "pk": 2051, "fields": { "answer": 4198, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 2053, "fields": { "answer": 4202, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2054, "fields": { "answer": 4202, "candidate": 132, "affected_candidate": 133, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 2055, "fields": { "answer": 4203, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2056, "fields": { "answer": 4203, "candidate": 132, "affected_candidate": 133, "global_multiplier": -0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 2057, "fields": { "answer": 4205, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.001 } }, { "model": "campaign_trail.answer_score_global", "pk": 2058, "fields": { "answer": 4205, "candidate": 132, "affected_candidate": 133, "global_multiplier": -0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 2059, "fields": { "answer": 4206, "candidate": 132, "affected_candidate": 132, "global_multiplier": 0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2060, "fields": { "answer": 4206, "candidate": 132, "affected_candidate": 133, "global_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_global", "pk": 2061, "fields": { "answer": 4208, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_global", "pk": 2062, "fields": { "answer": 4209, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 2069, "fields": { "answer": 4217, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_global", "pk": 2070, "fields": { "answer": 4218, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.02 } }, { "model": "campaign_trail.answer_score_global", "pk": 2071, "fields": { "answer": 4219, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 2072, "fields": { "answer": 4220, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2073, "fields": { "answer": 4220, "candidate": 132, "affected_candidate": 133, "global_multiplier": -0.15 } }, { "model": "campaign_trail.answer_score_global", "pk": 2074, "fields": { "answer": 4221, "candidate": 132, "affected_candidate": 133, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 2075, "fields": { "answer": 4222, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2076, "fields": { "answer": 4222, "candidate": 132, "affected_candidate": 133, "global_multiplier": -0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 2080, "fields": { "answer": 4231, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_global", "pk": 2081, "fields": { "answer": 4233, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2082, "fields": { "answer": 4234, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2083, "fields": { "answer": 4235, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2084, "fields": { "answer": 4236, "candidate": 132, "affected_candidate": 132, "global_multiplier": -0.002 } }, { "model": "campaign_trail.answer_score_global", "pk": 2087, "fields": { "answer": 4193, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 2088, "fields": { "answer": 4197, "candidate": 131, "affected_candidate": 132, "global_multiplier": -0.005 } }, { "model": "campaign_trail.answer_score_global", "pk": 14689, "fields": { "answer": 4147, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.075 } }, { "model": "campaign_trail.answer_score_global", "pk": 14690, "fields": { "answer": 4148, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.075 } }, { "model": "campaign_trail.answer_score_global", "pk": 14691, "fields": { "answer": 4149, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.055 } }, { "model": "campaign_trail.answer_score_global", "pk": 14692, "fields": { "answer": 14567, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 14693, "fields": { "answer": 14566, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 14694, "fields": { "answer": 14565, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 14696, "fields": { "answer": 14574, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_global", "pk": 14697, "fields": { "answer": 14573, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_global", "pk": 14698, "fields": { "answer": 14572, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_global", "pk": 14729, "fields": { "answer": 14602, "candidate": 131, "affected_candidate": 132, "global_multiplier": 0.0434 } }, { "model": "campaign_trail.answer_score_global", "pk": 14737, "fields": { "answer": 14612, "candidate": 131, "affected_candidate": 131, "global_multiplier": -0.0564 } }, { "model": "campaign_trail.answer_score_global", "pk": 14741, "fields": { "answer": 14541, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_global", "pk": 14752, "fields": { "answer": 14493, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.17 } }, { "model": "campaign_trail.answer_score_global", "pk": 14756, "fields": { "answer": 14637, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.0855 } }, { "model": "campaign_trail.answer_score_global", "pk": 14757, "fields": { "answer": 14636, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.0222 } }, { "model": "campaign_trail.answer_score_global", "pk": 14762, "fields": { "answer": 14490, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.0854 } }, { "model": "campaign_trail.answer_score_global", "pk": 14763, "fields": { "answer": 14646, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.0791 } }, { "model": "campaign_trail.answer_score_global", "pk": 14766, "fields": { "answer": 14497, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.15 } }, { "model": "campaign_trail.answer_score_global", "pk": 14768, "fields": { "answer": 14658, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.11 } }, { "model": "campaign_trail.answer_score_global", "pk": 14769, "fields": { "answer": 14659, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.155 } }, { "model": "campaign_trail.answer_score_global", "pk": 14771, "fields": { "answer": 14500, "candidate": 131, "affected_candidate": 131, "global_multiplier": -0.0211 } }, { "model": "campaign_trail.answer_score_global", "pk": 14772, "fields": { "answer": 14663, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.022 } }, { "model": "campaign_trail.answer_score_global", "pk": 14799, "fields": { "answer": 14645, "candidate": 131, "affected_candidate": 131, "global_multiplier": 0.069 } }, { "model": "campaign_trail.answer_score_global", "pk": 14833, "fields": { "answer": 14829, "candidate": 131, "affected_candidate": 131, "global_multiplier": -50 } }, { "model": "campaign_trail.answer_score_global", "pk": 14834, "fields": { "answer": 14829, "candidate": 131, "affected_candidate": 132, "global_multiplier": 50 } }, { "model": "campaign_trail.answer_score_global", "pk": 14835, "fields": { "answer": 14829, "candidate": 131, "affected_candidate": 133, "global_multiplier": 100 } } ] campaignTrail_temp.answer_score_issue_json = [ { "model": "campaign_trail.answer_score_issue", "pk": 1651, "fields": { "answer": 4131, "issue": 51, "issue_score": -0.3, "issue_importance": 5 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1652, "fields": { "answer": 4132, "issue": 51, "issue_score": -0.75, "issue_importance": 5 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1653, "fields": { "answer": 4135, "issue": 49, "issue_score": 0.6, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1654, "fields": { "answer": 4136, "issue": 49, "issue_score": 0, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1657, "fields": { "answer": 4153, "issue": 47, "issue_score": -0.1, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1659, "fields": { "answer": 4191, "issue": 48, "issue_score": -0.55, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1660, "fields": { "answer": 4192, "issue": 48, "issue_score": 0.55, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1661, "fields": { "answer": 4192, "issue": 50, "issue_score": 0.55, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1663, "fields": { "answer": 4196, "issue": 50, "issue_score": 0.3, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1664, "fields": { "answer": 4198, "issue": 50, "issue_score": -0.55, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1665, "fields": { "answer": 4202, "issue": 51, "issue_score": -0.6, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1666, "fields": { "answer": 4203, "issue": 51, "issue_score": 0.25, "issue_importance": 4 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1667, "fields": { "answer": 4205, "issue": 47, "issue_score": 0.5, "issue_importance": 5 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1668, "fields": { "answer": 4207, "issue": 48, "issue_score": 0.55, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1669, "fields": { "answer": 4208, "issue": 48, "issue_score": 0.1, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1674, "fields": { "answer": 4216, "issue": 50, "issue_score": 0.6, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1675, "fields": { "answer": 4217, "issue": 50, "issue_score": 0.2, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1676, "fields": { "answer": 4219, "issue": 50, "issue_score": -0.55, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1677, "fields": { "answer": 4220, "issue": 47, "issue_score": 0.5, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1678, "fields": { "answer": 4220, "issue": 51, "issue_score": 0.2, "issue_importance": 1 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1679, "fields": { "answer": 4222, "issue": 47, "issue_score": 0.5, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 1680, "fields": { "answer": 4222, "issue": 51, "issue_score": 0.4, "issue_importance": 2 } }, { "model": "campaign_trail.answer_score_issue", "pk": 14738, "fields": { "answer": 14612, "issue": 51, "issue_score": -0.2, "issue_importance": 0.2 } } ] campaignTrail_temp.answer_score_state_json = [ { "model": "campaign_trail.answer_score_state", "pk": 14201, "fields": { "answer": 4123, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14206, "fields": { "answer": 4123, "state": 393, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14208, "fields": { "answer": 4123, "state": 397, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.008 } }, { "model": "campaign_trail.answer_score_state", "pk": 14213, "fields": { "answer": 4123, "state": 403, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14214, "fields": { "answer": 4123, "state": 406, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.02 } }, { "model": "campaign_trail.answer_score_state", "pk": 14217, "fields": { "answer": 4124, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14226, "fields": { "answer": 4143, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.005 } }, { "model": "campaign_trail.answer_score_state", "pk": 14232, "fields": { "answer": 4143, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14234, "fields": { "answer": 4143, "state": 393, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14235, "fields": { "answer": 4143, "state": 397, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14236, "fields": { "answer": 4143, "state": 403, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14237, "fields": { "answer": 4143, "state": 406, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14239, "fields": { "answer": 4151, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14246, "fields": { "answer": 4153, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14258, "fields": { "answer": 4191, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14262, "fields": { "answer": 4191, "state": 403, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14263, "fields": { "answer": 4191, "state": 393, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14265, "fields": { "answer": 4191, "state": 397, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14266, "fields": { "answer": 4191, "state": 406, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.01 } }, { "model": "campaign_trail.answer_score_state", "pk": 14269, "fields": { "answer": 4194, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14276, "fields": { "answer": 4205, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14290, "fields": { "answer": 4216, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.015 } }, { "model": "campaign_trail.answer_score_state", "pk": 14460, "fields": { "answer": 4237, "state": 384, "candidate": 132, "affected_candidate": 132, "state_multiplier": 0.004 } }, { "model": "campaign_trail.answer_score_state", "pk": 14465, "fields": { "answer": 4237, "state": 393, "candidate": 132, "affected_candidate": 132, "state_multiplier": 0.004 } }, { "model": "campaign_trail.answer_score_state", "pk": 14467, "fields": { "answer": 4237, "state": 397, "candidate": 132, "affected_candidate": 132, "state_multiplier": 0.004 } }, { "model": "campaign_trail.answer_score_state", "pk": 14472, "fields": { "answer": 4237, "state": 403, "candidate": 132, "affected_candidate": 132, "state_multiplier": 0.004 } }, { "model": "campaign_trail.answer_score_state", "pk": 14473, "fields": { "answer": 4237, "state": 406, "candidate": 132, "affected_candidate": 132, "state_multiplier": 0.004 } }, { "model": "campaign_trail.answer_score_state", "pk": 14680, "fields": { "answer": 4200, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.16 } }, { "model": "campaign_trail.answer_score_state", "pk": 14681, "fields": { "answer": 4201, "state": 397, "candidate": 131, "affected_candidate": 132, "state_multiplier": -0.8977 } }, { "model": "campaign_trail.answer_score_state", "pk": 14682, "fields": { "answer": 4199, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.18222 } }, { "model": "campaign_trail.answer_score_state", "pk": 14684, "fields": { "answer": 4195, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.074566 } }, { "model": "campaign_trail.answer_score_state", "pk": 14685, "fields": { "answer": 14547, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.064566 } }, { "model": "campaign_trail.answer_score_state", "pk": 14686, "fields": { "answer": 14546, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.086566 } }, { "model": "campaign_trail.answer_score_state", "pk": 14687, "fields": { "answer": 14551, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": -0.03333 } }, { "model": "campaign_trail.answer_score_state", "pk": 14688, "fields": { "answer": 14555, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.11 } }, { "model": "campaign_trail.answer_score_state", "pk": 14699, "fields": { "answer": 14565, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.145 } }, { "model": "campaign_trail.answer_score_state", "pk": 14700, "fields": { "answer": 14566, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.111 } }, { "model": "campaign_trail.answer_score_state", "pk": 14701, "fields": { "answer": 14567, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.123 } }, { "model": "campaign_trail.answer_score_state", "pk": 14702, "fields": { "answer": 14572, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.145 } }, { "model": "campaign_trail.answer_score_state", "pk": 14703, "fields": { "answer": 4147, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.6 } }, { "model": "campaign_trail.answer_score_state", "pk": 14704, "fields": { "answer": 4148, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.4 } }, { "model": "campaign_trail.answer_score_state", "pk": 14705, "fields": { "answer": 4149, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.489 } }, { "model": "campaign_trail.answer_score_state", "pk": 14706, "fields": { "answer": 14573, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.111 } }, { "model": "campaign_trail.answer_score_state", "pk": 14707, "fields": { "answer": 14574, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.123 } }, { "model": "campaign_trail.answer_score_state", "pk": 14708, "fields": { "answer": 4130, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.4254 } }, { "model": "campaign_trail.answer_score_state", "pk": 14709, "fields": { "answer": 4131, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.46 } }, { "model": "campaign_trail.answer_score_state", "pk": 14711, "fields": { "answer": 14579, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.48 } }, { "model": "campaign_trail.answer_score_state", "pk": 14712, "fields": { "answer": 14581, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 1.277 } }, { "model": "campaign_trail.answer_score_state", "pk": 14713, "fields": { "answer": 14582, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.5 } }, { "model": "campaign_trail.answer_score_state", "pk": 14714, "fields": { "answer": 14481, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.52 } }, { "model": "campaign_trail.answer_score_state", "pk": 14715, "fields": { "answer": 4139, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0522 } }, { "model": "campaign_trail.answer_score_state", "pk": 14716, "fields": { "answer": 4138, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0622 } }, { "model": "campaign_trail.answer_score_state", "pk": 14718, "fields": { "answer": 14587, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.04544 } }, { "model": "campaign_trail.answer_score_state", "pk": 14719, "fields": { "answer": 14586, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0577 } }, { "model": "campaign_trail.answer_score_state", "pk": 14720, "fields": { "answer": 14482, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.144 } }, { "model": "campaign_trail.answer_score_state", "pk": 14721, "fields": { "answer": 14591, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.114 } }, { "model": "campaign_trail.answer_score_state", "pk": 14722, "fields": { "answer": 14483, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.11 } }, { "model": "campaign_trail.answer_score_state", "pk": 14723, "fields": { "answer": 14594, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.05 } }, { "model": "campaign_trail.answer_score_state", "pk": 14724, "fields": { "answer": 14594, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.11 } }, { "model": "campaign_trail.answer_score_state", "pk": 14725, "fields": { "answer": 14484, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.5 } }, { "model": "campaign_trail.answer_score_state", "pk": 14726, "fields": { "answer": 14597, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.38 } }, { "model": "campaign_trail.answer_score_state", "pk": 14727, "fields": { "answer": 14596, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.45 } }, { "model": "campaign_trail.answer_score_state", "pk": 14728, "fields": { "answer": 14485, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.13 } }, { "model": "campaign_trail.answer_score_state", "pk": 14730, "fields": { "answer": 14603, "state": 0, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_state", "pk": 14731, "fields": { "answer": 14486, "state": 403, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.5 } }, { "model": "campaign_trail.answer_score_state", "pk": 14732, "fields": { "answer": 14607, "state": 403, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.5 } }, { "model": "campaign_trail.answer_score_state", "pk": 14733, "fields": { "answer": 14608, "state": 403, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.5 } }, { "model": "campaign_trail.answer_score_state", "pk": 14734, "fields": { "answer": 14486, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.05 } }, { "model": "campaign_trail.answer_score_state", "pk": 14735, "fields": { "answer": 14607, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.0712 } }, { "model": "campaign_trail.answer_score_state", "pk": 14736, "fields": { "answer": 14608, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.078 } }, { "model": "campaign_trail.answer_score_state", "pk": 14739, "fields": { "answer": 14488, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.055 } }, { "model": "campaign_trail.answer_score_state", "pk": 14740, "fields": { "answer": 14616, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.045 } }, { "model": "campaign_trail.answer_score_state", "pk": 14742, "fields": { "answer": 14542, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_state", "pk": 14743, "fields": { "answer": 14543, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_state", "pk": 14744, "fields": { "answer": 14544, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_state", "pk": 14745, "fields": { "answer": 14544, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_state", "pk": 14746, "fields": { "answer": 14489, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.079 } }, { "model": "campaign_trail.answer_score_state", "pk": 14747, "fields": { "answer": 14626, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.056 } }, { "model": "campaign_trail.answer_score_state", "pk": 14748, "fields": { "answer": 14627, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.049 } }, { "model": "campaign_trail.answer_score_state", "pk": 14749, "fields": { "answer": 14492, "state": 404, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.25 } }, { "model": "campaign_trail.answer_score_state", "pk": 14750, "fields": { "answer": 14631, "state": 404, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.22 } }, { "model": "campaign_trail.answer_score_state", "pk": 14751, "fields": { "answer": 14633, "state": 404, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.2 } }, { "model": "campaign_trail.answer_score_state", "pk": 14753, "fields": { "answer": 14493, "state": 0, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.08 } }, { "model": "campaign_trail.answer_score_state", "pk": 14754, "fields": { "answer": 14636, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_state", "pk": 14755, "fields": { "answer": 14637, "state": 384, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.15 } }, { "model": "campaign_trail.answer_score_state", "pk": 14758, "fields": { "answer": 14491, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0688 } }, { "model": "campaign_trail.answer_score_state", "pk": 14759, "fields": { "answer": 14640, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0388 } }, { "model": "campaign_trail.answer_score_state", "pk": 14760, "fields": { "answer": 14641, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.026 } }, { "model": "campaign_trail.answer_score_state", "pk": 14761, "fields": { "answer": 14645, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0635 } }, { "model": "campaign_trail.answer_score_state", "pk": 14767, "fields": { "answer": 14497, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.175 } }, { "model": "campaign_trail.answer_score_state", "pk": 14770, "fields": { "answer": 14659, "state": 393, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_state", "pk": 14773, "fields": { "answer": 14525, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.44 } }, { "model": "campaign_trail.answer_score_state", "pk": 14774, "fields": { "answer": 14526, "state": 400, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.3 } }, { "model": "campaign_trail.answer_score_state", "pk": 14775, "fields": { "answer": 14531, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0777 } }, { "model": "campaign_trail.answer_score_state", "pk": 14778, "fields": { "answer": 14532, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.0542 } }, { "model": "campaign_trail.answer_score_state", "pk": 14779, "fields": { "answer": 14533, "state": 0, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.038 } }, { "model": "campaign_trail.answer_score_state", "pk": 14781, "fields": { "answer": 14539, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.078 } }, { "model": "campaign_trail.answer_score_state", "pk": 14782, "fields": { "answer": 14669, "state": 386, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.032 } }, { "model": "campaign_trail.answer_score_state", "pk": 14783, "fields": { "answer": 14674, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": -0.061 } }, { "model": "campaign_trail.answer_score_state", "pk": 14784, "fields": { "answer": 14673, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": -0.041 } }, { "model": "campaign_trail.answer_score_state", "pk": 14785, "fields": { "answer": 14559, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": -0.05 } }, { "model": "campaign_trail.answer_score_state", "pk": 14786, "fields": { "answer": 14560, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": -0.02 } }, { "model": "campaign_trail.answer_score_state", "pk": 14787, "fields": { "answer": 14560, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.098 } }, { "model": "campaign_trail.answer_score_state", "pk": 14788, "fields": { "answer": 14674, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.054 } }, { "model": "campaign_trail.answer_score_state", "pk": 14790, "fields": { "answer": 4120, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.1 } }, { "model": "campaign_trail.answer_score_state", "pk": 14791, "fields": { "answer": 4121, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.15 } }, { "model": "campaign_trail.answer_score_state", "pk": 14792, "fields": { "answer": 4122, "state": 406, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.11 } }, { "model": "campaign_trail.answer_score_state", "pk": 14793, "fields": { "answer": 4201, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.17 } }, { "model": "campaign_trail.answer_score_state", "pk": 14794, "fields": { "answer": 14477, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.084 } }, { "model": "campaign_trail.answer_score_state", "pk": 14795, "fields": { "answer": 14478, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.131 } }, { "model": "campaign_trail.answer_score_state", "pk": 14796, "fields": { "answer": 14559, "state": 397, "candidate": 131, "affected_candidate": 131, "state_multiplier": 0.08 } }, { "model": "campaign_trail.answer_score_state", "pk": 14798, "fields": { "answer": 14602, "state": 386, "candidate": 131, "affected_candidate": 132, "state_multiplier": 0.1 } } ] campaignTrail_temp.answer_feedback_json = [ { "model": "campaign_trail.answer_feedback", "pk": 1602, "fields": { "answer": 4120, "candidate": 131, "answer_feedback": "Peter agrees to take you to him, but the confusion in his eyes is palpable. James, on his part, seems wary of granting you speaking rights with your brash forthrightness and is somewhat dismissive of your story. Perhaps you never intended to find much support here in Jerusalem." } }, { "model": "campaign_trail.answer_feedback", "pk": 1603, "fields": { "answer": 4121, "candidate": 131, "answer_feedback": "Peter takes you to James, who graciously tells you the tales of Jesus’ own resurrection appearance to him. He walks you through the church's creed: \"Christ died for our sins in accordance with the scriptures, and that he was buried and that he was raised on the third day in accordance with the scriptures.\"" } }, { "model": "campaign_trail.answer_feedback", "pk": 1604, "fields": { "answer": 4122, "candidate": 131, "answer_feedback": "James and Peter admire your humility. He happily teaches you the creed of the church: \"Christ died for our sins in accordance with the scriptures and that he was buried and that he was raised on the third day in accordance with the scriptures.\" You may have some clout in Jerusalem after all." } }, { "model": "campaign_trail.answer_feedback", "pk": 1605, "fields": { "answer": 4123, "candidate": 131, "answer_feedback": "Your acceptance is well-received across the sections, but it can never hurt to hammer on the issues where your advantage is greatest." } }, { "model": "campaign_trail.answer_feedback", "pk": 1606, "fields": { "answer": 4124, "candidate": 131, "answer_feedback": "At first, you fail to find Cephas or any apostles on your own, but not all is wasted. By chance, you meet a man named Barnabas, a Christ-follower visiting from Antioch. He puts you on the right path to Cephas." } }, { "model": "campaign_trail.answer_feedback", "pk": 1607, "fields": { "answer": 4125, "candidate": 131, "answer_feedback": "Aware of the risks involved with being recognised by the Christ-followers, many of whom remember you solely as a fiend and tormentor, you plan to worship in a synagogue with them under disguise." } }, { "model": "campaign_trail.answer_feedback", "pk": 1608, "fields": { "answer": 4126, "candidate": 131, "answer_feedback": "There's nothing wrong with keeping the discussion focused on Texas." } }, { "model": "campaign_trail.answer_feedback", "pk": 1609, "fields": { "answer": 4127, "candidate": 131, "answer_feedback": "The congregation, knowing you as a man of God and the church, are quick to assist. While being searched for around the city, you escape the city walls tucked away in one of their baskets." } }, { "model": "campaign_trail.answer_feedback", "pk": 1610, "fields": { "answer": 4128, "candidate": 131, "answer_feedback": "Tyler has officially declared his withdrawal from the race. There are some whispers in the party about the jobs which may have come with that bargain, however. " } }, { "model": "campaign_trail.answer_feedback", "pk": 1612, "fields": { "answer": 4130, "candidate": 131, "answer_feedback": "To your delight, the Philippian congregation has sent gifts to ease your troubles. Truly you are admired there – likewise, your sincerity attracts the Thessalonians, who grasp your promises of a better life after death." } }, { "model": "campaign_trail.answer_feedback", "pk": 1613, "fields": { "answer": 4131, "candidate": 131, "answer_feedback": "The Thessalonians, impoverished as they are, value hard work and future salvation, and they do find this message appealing." } }, { "model": "campaign_trail.answer_feedback", "pk": 1614, "fields": { "answer": 4132, "candidate": 131, "answer_feedback": "The slavery issue is increasingly becoming a problem for the Whigs of the South, and there's no reason to give them a pass on it." } }, { "model": "campaign_trail.answer_feedback", "pk": 1615, "fields": { "answer": 4133, "candidate": 131, "answer_feedback": "The slavery issue is increasingly becoming a problem for the Whigs of the South, and there's no reason to give them a pass on it." } }, { "model": "campaign_trail.answer_feedback", "pk": 1616, "fields": { "answer": 4134, "candidate": 131, "answer_feedback": "The slavery issue is increasingly becoming a problem for the Whigs of the South, and there's no reason to give them a pass on it." } }, { "model": "campaign_trail.answer_feedback", "pk": 1617, "fields": { "answer": 4135, "candidate": 131, "answer_feedback": "The Irish vote in the North has gone heavily in your favor recently. It's a good idea to keep it that way." } }, { "model": "campaign_trail.answer_feedback", "pk": 1618, "fields": { "answer": 4136, "candidate": 131, "answer_feedback": "A nice aside aimed at Clay, but you should show more vigor in defense of your Irish supporters." } }, { "model": "campaign_trail.answer_feedback", "pk": 1619, "fields": { "answer": 4137, "candidate": 131, "answer_feedback": "You go into your private tent in Corinth and kneel to pray. As you close your eyes, your vision fills with the sight of thirteen men at a table, raucously arguing and discussing...something." } }, { "model": "campaign_trail.answer_feedback", "pk": 1620, "fields": { "answer": 4138, "candidate": 131, "answer_feedback": "Perhaps a little underwhelming. The Corinthians remain wanting in details and are confused as to why a simple dinner carries such significance to your gospel." } }, { "model": "campaign_trail.answer_feedback", "pk": 1621, "fields": { "answer": 4139, "candidate": 131, "answer_feedback": "The simple-minded Corinthians unfortunately are not particularly interested in symbolism, they try their best to appease you." } }, { "model": "campaign_trail.answer_feedback", "pk": 1622, "fields": { "answer": 4140, "candidate": 131, "answer_feedback": "This isn't a central issue in this election, but you are definitely closer to the majority opinion here." } }, { "model": "campaign_trail.answer_feedback", "pk": 1623, "fields": { "answer": 4145, "candidate": 131, "answer_feedback": "Your national supporters admire the fact that you are a man of integrity and will remain above the fray of local politics." } }, { "model": "campaign_trail.answer_feedback", "pk": 1624, "fields": { "answer": 4146, "candidate": 131, "answer_feedback": "This will certainly galvanize the vote in New York." } }, { "model": "campaign_trail.answer_feedback", "pk": 1625, "fields": { "answer": 4147, "candidate": 131, "answer_feedback": "The Philippians are noticeably receptive to your message and wish to be freed from the fleshly laws that could constrain them so." } }, { "model": "campaign_trail.answer_feedback", "pk": 1626, "fields": { "answer": 4148, "candidate": 131, "answer_feedback": "This tale, which had appealed to throngs of onlookers in Antioch and Damascus, misses its mark upon the Phillippians. You realize why once they ask \"Who is Adam?\"" } }, { "model": "campaign_trail.answer_feedback", "pk": 1627, "fields": { "answer": 4149, "candidate": 131, "answer_feedback": "A modest number of Phillippians flock to you, curious how you can call yourself a Jew while ignoring their laws as you do." } }, { "model": "campaign_trail.answer_feedback", "pk": 1628, "fields": { "answer": 4151, "candidate": 131, "answer_feedback": "There's no reason to say anything that will make life awkward for Van Buren. You need a united party." } }, { "model": "campaign_trail.answer_feedback", "pk": 1629, "fields": { "answer": 4152, "candidate": 131, "answer_feedback": "This is definitely the majority opinion among the public." } }, { "model": "campaign_trail.answer_feedback", "pk": 1630, "fields": { "answer": 4153, "candidate": 131, "answer_feedback": "This puts you closer to Clay's position, and is a disappointment to the general public." } }, { "model": "campaign_trail.answer_feedback", "pk": 1631, "fields": { "answer": 4188, "candidate": 131, "answer_feedback": "Your unusual humility only adds to your respect in Antioch, but the penalty for not being better equipped will surely be felt in hungry nights to come. While preaching, you meet a gentile named Titus – a good fellow who becomes your friend and accompanies you on your mission." } }, { "model": "campaign_trail.answer_feedback", "pk": 1632, "fields": { "answer": 4189, "candidate": 131, "answer_feedback": "With the local church behind you, you travel to Asia Minor and the island of Crete to preach. Gentile, Jew, and Pagan alike hear your powerful words and flock to you. Among them is a gentile named Titus, who becomes your friend and accompanies you on your mission." } }, { "model": "campaign_trail.answer_feedback", "pk": 1633, "fields": { "answer": 4190, "candidate": 131, "answer_feedback": "While true, people are getting the idea that you are dancing around a hot issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1634, "fields": { "answer": 4191, "candidate": 131, "answer_feedback": "This is certainly the party line on the tariff issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1635, "fields": { "answer": 4192, "candidate": 131, "answer_feedback": "Support for a federal infrastructure program is quite limited within your party." } }, { "model": "campaign_trail.answer_feedback", "pk": 1636, "fields": { "answer": 4193, "candidate": 131, "answer_feedback": "This answer satisfies the Southern wing of the party while providing some concession to Northern Democrats in states like New York." } }, { "model": "campaign_trail.answer_feedback", "pk": 1637, "fields": { "answer": 4194, "candidate": 131, "answer_feedback": "This is certainly the party line on the tariff issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1638, "fields": { "answer": 4195, "candidate": 131, "answer_feedback": "The Jerusalem leaders, having only heard tales of you before, feel uneasy about your pride. The situation rapidly becomes more complicated as they then learn that your gentile friend Titus has not been circumcised." } }, { "model": "campaign_trail.answer_feedback", "pk": 1639, "fields": { "answer": 4196, "candidate": 131, "answer_feedback": "Are you out of your mind? A national bank is anathema to the Democratic Party." } }, { "model": "campaign_trail.answer_feedback", "pk": 1640, "fields": { "answer": 4197, "candidate": 131, "answer_feedback": "The independent Treasury idea has broad support in the party, and also shows that Democrats are trying to do something after the 1837 crisis." } }, { "model": "campaign_trail.answer_feedback", "pk": 1641, "fields": { "answer": 4198, "candidate": 131, "answer_feedback": "There's nothing wrong with defending the current system, which is the Democratic system in large part." } }, { "model": "campaign_trail.answer_feedback", "pk": 1642, "fields": { "answer": 4199, "candidate": 131, "answer_feedback": "The locals are respectful of your dedication to not earning money off your preaching – a quality which increases your credibility in their eyes. While preaching one day, you once again chance upon Barnabas, who is especially impressed by your modesty." } }, { "model": "campaign_trail.answer_feedback", "pk": 1643, "fields": { "answer": 4200, "candidate": 131, "answer_feedback": "You do not stand out as much among many other preachers who hoped to earn a living this way, but your word's zeal certainly makes fervent converts of your audience. While preaching one day, you once again chance upon Barnabas. He is impressed with your tenacity and faith." } }, { "model": "campaign_trail.answer_feedback", "pk": 1644, "fields": { "answer": 4201, "candidate": 131, "answer_feedback": "Your ardent zeal and hard work appeals greatly to the congregation, who takes you in as one of their own. At a synagogue, you once again meet Barnabas, who is especially impressed by your humility and passion." } }, { "model": "campaign_trail.answer_feedback", "pk": 1645, "fields": { "answer": 4202, "candidate": 131, "answer_feedback": "Ending the Gag Rule is definitely a Whig prerogative." } }, { "model": "campaign_trail.answer_feedback", "pk": 1646, "fields": { "answer": 4203, "candidate": 131, "answer_feedback": "Ending the Gag Rule is definitely a Whig prerogative." } }, { "model": "campaign_trail.answer_feedback", "pk": 1647, "fields": { "answer": 4204, "candidate": 131, "answer_feedback": "This is one time when it just might do to keep your mouth shut." } }, { "model": "campaign_trail.answer_feedback", "pk": 1648, "fields": { "answer": 4205, "candidate": 131, "answer_feedback": "People are wondering if they are reading your words correctly. Annexation was supposed to be the primary issue of your campaign." } }, { "model": "campaign_trail.answer_feedback", "pk": 1649, "fields": { "answer": 4207, "candidate": 131, "answer_feedback": "This is a dissatisfying answer to many in your party." } }, { "model": "campaign_trail.answer_feedback", "pk": 1654, "fields": { "answer": 4216, "candidate": 131, "answer_feedback": "A national bank is anathema to most Democrats." } }, { "model": "campaign_trail.answer_feedback", "pk": 1655, "fields": { "answer": 4218, "candidate": 131, "answer_feedback": "There's nothing wrong with taking this position." } }, { "model": "campaign_trail.answer_feedback", "pk": 1656, "fields": { "answer": 4219, "candidate": 131, "answer_feedback": "There's nothing wrong with taking this position." } }, { "model": "campaign_trail.answer_feedback", "pk": 1657, "fields": { "answer": 4220, "candidate": 131, "answer_feedback": "Better to just ignore this letter." } }, { "model": "campaign_trail.answer_feedback", "pk": 1658, "fields": { "answer": 4222, "candidate": 131, "answer_feedback": "Calhoun may be past his heyday, but it serves little purpose to insult him." } }, { "model": "campaign_trail.answer_feedback", "pk": 1666, "fields": { "answer": 4231, "candidate": 131, "answer_feedback": "Are you trying to win the Mormon vote this year? This is one case where it's definitely best to keep your opinions private." } }, { "model": "campaign_trail.answer_feedback", "pk": 1667, "fields": { "answer": 4233, "candidate": 131, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1668, "fields": { "answer": 4234, "candidate": 131, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1669, "fields": { "answer": 4235, "candidate": 131, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1670, "fields": { "answer": 4236, "candidate": 131, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1671, "fields": { "answer": 4237, "candidate": 131, "answer_feedback": "This is a strange aside to take, but one that is unlikely to make much of an impression." } }, { "model": "campaign_trail.answer_feedback", "pk": 1700, "fields": { "answer": 4190, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1701, "fields": { "answer": 4191, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1702, "fields": { "answer": 4193, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1703, "fields": { "answer": 4194, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1704, "fields": { "answer": 4196, "candidate": 132, "answer_feedback": "Many are surprised to hear you hedge your position on the bank issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1705, "fields": { "answer": 4197, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1706, "fields": { "answer": 4198, "candidate": 132, "answer_feedback": "This is a little out of step with Whig ideology." } }, { "model": "campaign_trail.answer_feedback", "pk": 1710, "fields": { "answer": 4202, "candidate": 132, "answer_feedback": "Silence may be the best course, given the divisiveness of this issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1711, "fields": { "answer": 4203, "candidate": 132, "answer_feedback": "Silence may be the best course, given the divisiveness of this issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1712, "fields": { "answer": 4204, "candidate": 132, "answer_feedback": "Silence may be the best course, given the divisiveness of this issue." } }, { "model": "campaign_trail.answer_feedback", "pk": 1713, "fields": { "answer": 4207, "candidate": 132, "answer_feedback": "This is in line with the opinion of many Whigs." } }, { "model": "campaign_trail.answer_feedback", "pk": 1714, "fields": { "answer": 4209, "candidate": 132, "answer_feedback": "What is the idea here? Henry Clay opposed to tariffs?" } }, { "model": "campaign_trail.answer_feedback", "pk": 1718, "fields": { "answer": 4217, "candidate": 132, "answer_feedback": "What's wrong with a national bank? Your supporters are concerned by this statement." } }, { "model": "campaign_trail.answer_feedback", "pk": 1719, "fields": { "answer": 4219, "candidate": 132, "answer_feedback": "Henry Clay takes the Democratic line?" } }, { "model": "campaign_trail.answer_feedback", "pk": 1720, "fields": { "answer": 4220, "candidate": 132, "answer_feedback": "Probably best to ignore this letter." } }, { "model": "campaign_trail.answer_feedback", "pk": 1721, "fields": { "answer": 4221, "candidate": 132, "answer_feedback": "Probably best to ignore this letter." } }, { "model": "campaign_trail.answer_feedback", "pk": 1722, "fields": { "answer": 4222, "candidate": 132, "answer_feedback": "Hopefully you're planning to win this election in the North, and not the South." } }, { "model": "campaign_trail.answer_feedback", "pk": 1723, "fields": { "answer": 4223, "candidate": 132, "answer_feedback": "This is probably your best option." } }, { "model": "campaign_trail.answer_feedback", "pk": 1727, "fields": { "answer": 4231, "candidate": 132, "answer_feedback": "Are you trying to win the Mormon vote this year? This is one case where it's definitely best to keep your opinions private." } }, { "model": "campaign_trail.answer_feedback", "pk": 1728, "fields": { "answer": 4233, "candidate": 132, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1729, "fields": { "answer": 4234, "candidate": 132, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1730, "fields": { "answer": 4235, "candidate": 132, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1731, "fields": { "answer": 4236, "candidate": 132, "answer_feedback": "Good luck in this crucial state." } }, { "model": "campaign_trail.answer_feedback", "pk": 1732, "fields": { "answer": 4237, "candidate": 132, "answer_feedback": "This is a good way to rally Northern support." } }, { "model": "campaign_trail.answer_feedback", "pk": 14480, "fields": { "answer": 14479, "candidate": 131, "answer_feedback": "You begin to pray in front of them. Suddenly, the feeling of their eyes fades away, and you instead feel something quite different..." } }, { "model": "campaign_trail.answer_feedback", "pk": 14504, "fields": { "answer": 14503, "candidate": 131, "answer_feedback": "The arrival of an unknown man clad in robes who refuses to partake in Christ causes whispers and side-eyes among the congregation. You hear the word \"spy\" floating through the air, and wonder if your attempt at discretion may have brought more attention on you" } }, { "model": "campaign_trail.answer_feedback", "pk": 14506, "fields": { "answer": 14505, "candidate": 131, "answer_feedback": "The man welcomes you and urges a quick baptism after supper, and the congregation cheers in its approval. Yet as you look over their faces, you catch glimpses of recognition in some of the more haggard figures..." } }, { "model": "campaign_trail.answer_feedback", "pk": 14509, "fields": { "answer": 14508, "candidate": 131, "answer_feedback": "If they weren’t suspicious of you before, they most certainly are now. The atmosphere feels poisonous to you — soon, you take your leave, cloak thrown over yourself and stinging with rejection." } }, { "model": "campaign_trail.answer_feedback", "pk": 14512, "fields": { "answer": 14510, "candidate": 131, "answer_feedback": "Your sincerity startles and bewilders the crowd, but the preacher soon praises God for what He did to you, and the congregation too realizes that you have been forgiven by God. You are to be baptized today." } }, { "model": "campaign_trail.answer_feedback", "pk": 14513, "fields": { "answer": 14511, "candidate": 131, "answer_feedback": "The congregation has much trouble accepting what you say, but does not act hostilely as you leave. You spend the rest of your time in Damascus with the word of Christ in your chest, but you keep a wide berth from the synagogue." } }, { "model": "campaign_trail.answer_feedback", "pk": 14516, "fields": { "answer": 14515, "candidate": 131, "answer_feedback": "The congregation, once filled with doubt and fear of you, now agrees to lend you aid. While being searched around the city, you escape the city walls tucked away in one of their baskets." } }, { "model": "campaign_trail.answer_feedback", "pk": 14518, "fields": { "answer": 14517, "candidate": 131, "answer_feedback": "You are forced to make an escape by yourself, but are spotted as you attempt to slip through the gates. After a short chase, you are captured by local authorities, tried and executed." } }, { "model": "campaign_trail.answer_feedback", "pk": 14521, "fields": { "answer": 14520, "candidate": 131, "answer_feedback": "The congregation refuses to help you and accuses you of being nothing more than a tool of Satan. Instead, you are forced to make an escape by yourself – a failed endeavor, as you are captured by local authorities, tried and executed." } }, { "model": "campaign_trail.answer_feedback", "pk": 14523, "fields": { "answer": 14522, "candidate": 131, "answer_feedback": "You are forced to make an escape by yourself, but are spotted as you attempt to slip through the gates. After a short chase, you are captured by local authorities, tried and executed." } }, { "model": "campaign_trail.answer_feedback", "pk": 14527, "fields": { "answer": 14525, "candidate": 131, "answer_feedback": "You watch the Thessalonians listen with fear as Paul tells them of their possible destruction. Suddenly, your vision turns black and you find yourself once again in the body of Paul, watching the congregation file out." } }, { "model": "campaign_trail.answer_feedback", "pk": 14529, "fields": { "answer": 14526, "candidate": 131, "answer_feedback": "You watch the Thessalonians become and nearly angry with the imperious demands of this foreigner. Suddenly, your vision turns black and you find yourself once again in the body of Paul, taken from the serenity above and dropped into an upset crowd – which is surely less enjoyable." } }, { "model": "campaign_trail.answer_feedback", "pk": 14535, "fields": { "answer": 14531, "candidate": 131, "answer_feedback": "The institution of the Lord's Supper becomes a background event as, later in the night, you announce that one of your disciples will betray you. You wake once again in the body of Paul and relay this to the Corinthians, who are delighted to hear the true words of Jesus come from your mouth." } }, { "model": "campaign_trail.answer_feedback", "pk": 14545, "fields": { "answer": 14475, "candidate": 131, "answer_feedback": "Your plan soon goes awry when a guard stops you at the gates, and after a short chase, you are thrown into prison. Your trial and execution swiftly follow, and it is not long before you find yourself at the end of the mortal coil." } }, { "model": "campaign_trail.answer_feedback", "pk": 14548, "fields": { "answer": 14546, "candidate": 131, "answer_feedback": "Impressed by the intricacy of your gospel, the Jerusalem leaders seem increasingly likely to fund another mission, but the situation becomes complicated as the Jerusalem leaders learn that your gentile friend Titus has not been circumcised." } }, { "model": "campaign_trail.answer_feedback", "pk": 14549, "fields": { "answer": 14547, "candidate": 131, "answer_feedback": "Barnabas and Titus start out as great advocates for your case, but the situation becomes complicated as the Jerusalem leaders learn that Titus, a gentile, has not been circumcised." } }, { "model": "campaign_trail.answer_feedback", "pk": 14552, "fields": { "answer": 14551, "candidate": 131, "answer_feedback": "You leave Jerusalem, angry and embarrassed, but it is surely possible that your sectarianism will have its appeal to the gentile-heavy parts of the world – provided you scrounge up the funds to get there." } }, { "model": "campaign_trail.answer_feedback", "pk": 14553, "fields": { "answer": 14550, "candidate": 131, "answer_feedback": "Your yielding to the Judaizers disappoints Titus and plucks angrily at your pride, but Jerusalem is sated and agrees to fund a second mission. They will be sending Peter and other brethren to Antioch to help prepare you for the mission. James gives you one rule – remember the poor." } }, { "model": "campaign_trail.answer_feedback", "pk": 14554, "fields": { "answer": 14476, "candidate": 131, "answer_feedback": "James, fearful of an ugly split, devises a solution to end this spat – you will be sent to the gentiles and Peter to the Jews, though not after Peter and other brethren come to Antioch to help prepare you for the mission. James gives you one rule – remember the poor." } }, { "model": "campaign_trail.answer_feedback", "pk": 14556, "fields": { "answer": 14477, "candidate": 131, "answer_feedback": "Working will surely aid your second mission." } }, { "model": "campaign_trail.answer_feedback", "pk": 14557, "fields": { "answer": 14555, "candidate": 131, "answer_feedback": "You pick up more gentile followers in the city with your persuasive words." } }, { "model": "campaign_trail.answer_feedback", "pk": 14558, "fields": { "answer": 14478, "candidate": 131, "answer_feedback": "Despite your short stature and age, your manner of speaking and voice is imposing. After a fair share of awkward looks around the table, Peter feebly admits his hypocrisy and tells the other missionaries to listen to you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14561, "fields": { "answer": 14559, "candidate": 131, "answer_feedback": "What was supposed to be a mending between churches has turned into a shouting match. The missionaries soon depart, disgusted." } }, { "model": "campaign_trail.answer_feedback", "pk": 14562, "fields": { "answer": 14560, "candidate": 131, "answer_feedback": "Barnabas is swayed to your side, while Peter and the missionaries remain disgruntled. There will be no true resolution to this spat." } }, { "model": "campaign_trail.answer_feedback", "pk": 14568, "fields": { "answer": 14567, "candidate": 131, "answer_feedback": "A modest number of Phillippians flock to you, curious how you can call yourself a Jew while ignoring their laws as you do." } }, { "model": "campaign_trail.answer_feedback", "pk": 14569, "fields": { "answer": 14566, "candidate": 131, "answer_feedback": "This tale, which had appealed to throngs of onlookers in Antioch and Damascus, misses its mark upon the Phillippians. You realize why once they ask \"Who is Adam?\"" } }, { "model": "campaign_trail.answer_feedback", "pk": 14570, "fields": { "answer": 14565, "candidate": 131, "answer_feedback": "The Philippians are noticeably receptive to your message and wish to be freed from the fleshly laws that could constrain them so." } }, { "model": "campaign_trail.answer_feedback", "pk": 14575, "fields": { "answer": 14574, "candidate": 131, "answer_feedback": "A modest number of Phillippians flock to you, curious how you can call yourself a Jew while ignoring their laws as you do." } }, { "model": "campaign_trail.answer_feedback", "pk": 14576, "fields": { "answer": 14573, "candidate": 131, "answer_feedback": "This tale, which had appealed to throngs of onlookers in Antioch and Damascus, misses its mark upon the Phillippians. You realize why once they ask \"Who is Adam?\"" } }, { "model": "campaign_trail.answer_feedback", "pk": 14577, "fields": { "answer": 14572, "candidate": 131, "answer_feedback": "The Philippians are noticeably receptive to your message and wish to be freed from the fleshly laws that could constrain them so." } }, { "model": "campaign_trail.answer_feedback", "pk": 14578, "fields": { "answer": 14481, "candidate": 131, "answer_feedback": "The Corinthians struggle to grasp the concept of Christ crucified and resurrected, finding it both puzzling and offensive. However, some among them recognize the power and wisdom of this message and join you in prayer in the days to come." } }, { "model": "campaign_trail.answer_feedback", "pk": 14580, "fields": { "answer": 14579, "candidate": 131, "answer_feedback": "The Corinthians are intrigued by the idea of God's wisdom, as it challenges the conventional wisdom of the world. In a city soaked in Greek philosophy, they are especially intrigued by your rejection of it." } }, { "model": "campaign_trail.answer_feedback", "pk": 14583, "fields": { "answer": 14582, "candidate": 131, "answer_feedback": "The Corinthians, having long taken great pleasure from material wealth and objects, struggle to grasp your teachings of selflessness and sacrifice. It is a frustrating roadblock to run into." } }, { "model": "campaign_trail.answer_feedback", "pk": 14584, "fields": { "answer": 14581, "candidate": 131, "answer_feedback": "The Corinthians struggle with division and a lack of unity within their community, and as such your emphasis on a common cause resonates with some. These believers feel a renewed sense of purpose and cooperation among themselves – let's hope it lasts." } }, { "model": "campaign_trail.answer_feedback", "pk": 14588, "fields": { "answer": 14587, "candidate": 131, "answer_feedback": "This seems like an unnecessary explanation to the Corinthians, who understand well enough that you are not the same as the Judaizers and are more concerned with your direct contradiction to their teachings." } }, { "model": "campaign_trail.answer_feedback", "pk": 14589, "fields": { "answer": 14586, "candidate": 131, "answer_feedback": "The Corinthians are not exactly hostile to Jews, but they do find their practices odd and take well to your explanations." } }, { "model": "campaign_trail.answer_feedback", "pk": 14590, "fields": { "answer": 14482, "candidate": 131, "answer_feedback": "The Thessalonians are delighted to hear that the dead will be waiting for them, joyful and lively as ever, and quickly try to get into shape as they learn Christ will return imminently." } }, { "model": "campaign_trail.answer_feedback", "pk": 14592, "fields": { "answer": 14591, "candidate": 131, "answer_feedback": "As relieved as they are to learn about a resurrection, they are not so motivated to believe in a resurrection that’s so far away – nor are they particularly enthusiastic to hear about the coming death and destruction in the meantime." } }, { "model": "campaign_trail.answer_feedback", "pk": 14593, "fields": { "answer": 14483, "candidate": 131, "answer_feedback": "After another successful mission in Antioch, you embark to begin your mission in Anatolia." } }, { "model": "campaign_trail.answer_feedback", "pk": 14595, "fields": { "answer": 14594, "candidate": 131, "answer_feedback": "Judea is crowded with religious authorities already, but you are sure you have made an impact as you return to Antioch to begin your mission in Anatolia." } }, { "model": "campaign_trail.answer_feedback", "pk": 14598, "fields": { "answer": 14596, "candidate": 131, "answer_feedback": "Perhaps the best you can get with these Celts is conversion through fear." } }, { "model": "campaign_trail.answer_feedback", "pk": 14599, "fields": { "answer": 14484, "candidate": 131, "answer_feedback": "The pagan Celts are not only used to practicing their own strange rituals, but are quite familiar with Jews in the region and are not concerned with the baggage of conversion to Judaism." } }, { "model": "campaign_trail.answer_feedback", "pk": 14600, "fields": { "answer": 14597, "candidate": 131, "answer_feedback": "The warrior-like Celts are not particularly concerned with intellectual matters." } }, { "model": "campaign_trail.answer_feedback", "pk": 14601, "fields": { "answer": 14485, "candidate": 131, "answer_feedback": "After a good, thoughtful discussion in which you swap stories, Apollos seems to have become more closely aligned with your own view of theology. He bids you good travels as he departs towards Corinth." } }, { "model": "campaign_trail.answer_feedback", "pk": 14604, "fields": { "answer": 14602, "candidate": 131, "answer_feedback": "After a swapping of stories, Apollos has learned which congregations know your name – an asset in his own mission. He bids you good travels as he departs towards Corinth." } }, { "model": "campaign_trail.answer_feedback", "pk": 14605, "fields": { "answer": 14603, "candidate": 131, "answer_feedback": "After a brief, friendly conversation over nothing particularly important, Apollos bids you good travels and continues on his way to Corinth." } }, { "model": "campaign_trail.answer_feedback", "pk": 14606, "fields": { "answer": 14486, "candidate": 131, "answer_feedback": "Though you are certain your point is clear, you feel this won’t get through to the Corinthians, who have only known leaders in the form of politics and factions." } }, { "model": "campaign_trail.answer_feedback", "pk": 14609, "fields": { "answer": 14607, "candidate": 131, "answer_feedback": "The Corinthians respond well to your hostility and show of strength, and this is sure to keep many in line. Apollos, whom you have sabotaged in his efforts to build a church of his own, may not." } }, { "model": "campaign_trail.answer_feedback", "pk": 14610, "fields": { "answer": 14608, "candidate": 131, "answer_feedback": "The Judaizers in the community will hardly listen to what you have to say, but you’ve made an effort to retrieve those gentiles who have not committed themselves to Cephas' thinking." } }, { "model": "campaign_trail.answer_feedback", "pk": 14611, "fields": { "answer": 14487, "candidate": 131, "answer_feedback": "The richer men in the congregation are as relieved to hear this as the slaves." } }, { "model": "campaign_trail.answer_feedback", "pk": 14614, "fields": { "answer": 14612, "candidate": 131, "answer_feedback": "This letter, which delights the slaves of Corinth, quickly causes a movement which escapes your grasp. Slaves spread the news that Christ would want them free across Greece, and rumors spread across the Empire that you are trying to incite slave against master." } }, { "model": "campaign_trail.answer_feedback", "pk": 14615, "fields": { "answer": 14488, "candidate": 131, "answer_feedback": "As has become a typical style of yours, your fire-and-brimstone teachings strike the Corinthians with fear of punishment." } }, { "model": "campaign_trail.answer_feedback", "pk": 14618, "fields": { "answer": 14616, "candidate": 131, "answer_feedback": "Some Corinthians start to see they had taken their present state for granted, but many remain demotivated and listless, wayward from Christ's teachings." } }, { "model": "campaign_trail.answer_feedback", "pk": 14619, "fields": { "answer": 14617, "candidate": 131, "answer_feedback": "You take a small break from dictation to pray. Your vision becomes blurry as you hear the Lord Jesus speak to you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14620, "fields": { "answer": 14544, "candidate": 131, "answer_feedback": "You stretch your energy to its limits making new converts in both cities, but this means that your work in Macedonia will be more limited than you may have intended." } }, { "model": "campaign_trail.answer_feedback", "pk": 14621, "fields": { "answer": 14541, "candidate": 131, "answer_feedback": "You set up new churches around the region, which soon learns of your ability and gospel." } }, { "model": "campaign_trail.answer_feedback", "pk": 14622, "fields": { "answer": 14542, "candidate": 131, "answer_feedback": "You make new converts in Philippi, in addition to reinforcing the belief of those who were there when you first arrived." } }, { "model": "campaign_trail.answer_feedback", "pk": 14623, "fields": { "answer": 14543, "candidate": 131, "answer_feedback": "You make new converts in Thessaloniki and reinforce those who were believers before." } }, { "model": "campaign_trail.answer_feedback", "pk": 14624, "fields": { "answer": 14489, "candidate": 131, "answer_feedback": "Your exhausted mind shows in the pages, and it moves many of the troublesome Corinthians who still feel some reverence towards you even after this spat." } }, { "model": "campaign_trail.answer_feedback", "pk": 14628, "fields": { "answer": 14626, "candidate": 131, "answer_feedback": "The Corinthians know your story, but they have been convinced of its falsity by James' men." } }, { "model": "campaign_trail.answer_feedback", "pk": 14629, "fields": { "answer": 14627, "candidate": 131, "answer_feedback": "The letter is read aloud as soon as it arrives in Corinth, but your doubters don’t feel moved by such a tactic. The Judaizers have their own prayers, after all." } }, { "model": "campaign_trail.answer_feedback", "pk": 14630, "fields": { "answer": 14492, "candidate": 131, "answer_feedback": "It is only logical to take the gospel westward." } }, { "model": "campaign_trail.answer_feedback", "pk": 14632, "fields": { "answer": 14631, "candidate": 131, "answer_feedback": "The Romans are quite receptive to your message and are sure to spread it themselves while you focus on Macedonia." } }, { "model": "campaign_trail.answer_feedback", "pk": 14634, "fields": { "answer": 14633, "candidate": 131, "answer_feedback": "The Romans like what they read and hope to see you soon. They are sure to spread your word while you prepare." } }, { "model": "campaign_trail.answer_feedback", "pk": 14635, "fields": { "answer": 14493, "candidate": 131, "answer_feedback": "In your noticeable anger, you grab the pen from your scribe and personally write at the end of your epistle, \"See what large letters I make when I am writing in my own hand!\" You're sure to have scared the Celts now." } }, { "model": "campaign_trail.answer_feedback", "pk": 14638, "fields": { "answer": 14636, "candidate": 131, "answer_feedback": "The Galatians who receive your message are touched, although not all are swayed, having been convinced of the errors of your gospel." } }, { "model": "campaign_trail.answer_feedback", "pk": 14642, "fields": { "answer": 14641, "candidate": 131, "answer_feedback": "For all the difficulties that the Judaizers have wrought on you, perhaps this is a tactical move. The future of Jesus worshippers may truly lie in Jerusalem." } }, { "model": "campaign_trail.answer_feedback", "pk": 14643, "fields": { "answer": 14640, "candidate": 131, "answer_feedback": "The Jerusalem church is truly impressed by your hard work. They welcome you to appear with them in the city, and you gain some followers there." } }, { "model": "campaign_trail.answer_feedback", "pk": 14644, "fields": { "answer": 14491, "candidate": 131, "answer_feedback": "Proselytizing to fellow Jews is not your strong suit, but you make some converts in the city. Peter, James, and John are surely displeased by your ignorance, however." } }, { "model": "campaign_trail.answer_feedback", "pk": 14647, "fields": { "answer": 14646, "candidate": 131, "answer_feedback": "Since the Great Fire of Rome, Nero and the Empire's client states have been eager to persecute Christ-worshippers. Your testimony is heard across the Empire and moves your congregations abroad." } }, { "model": "campaign_trail.answer_feedback", "pk": 14648, "fields": { "answer": 14645, "candidate": 131, "answer_feedback": "Since the Great Fire of Rome, Nero and the Empire's client states have been eager to persecute Christ-worshippers. Your congregations hear of your speech and are not too interested, but the Judeans may finally listen to you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14649, "fields": { "answer": 14490, "candidate": 131, "answer_feedback": "Since the Great Fire of Rome, Nero and the Empire's client states have been eager to persecute Christ-worshippers. Your congregations have heard of your capture and admire your spirit." } }, { "model": "campaign_trail.answer_feedback", "pk": 14653, "fields": { "answer": 14652, "candidate": 131, "answer_feedback": "Your logic is reasonable enough, but the Roman officials decide that the Judean transgressions take precedence here. They decide to keep you in Judea." } }, { "model": "campaign_trail.answer_feedback", "pk": 14654, "fields": { "answer": 14651, "candidate": 131, "answer_feedback": "The appeal is not considered reasonable enough, though you know how true it is. You will be stuck in Judea." } }, { "model": "campaign_trail.answer_feedback", "pk": 14655, "fields": { "answer": 14650, "candidate": 131, "answer_feedback": "You are sure to be executed in Jerusalem." } }, { "model": "campaign_trail.answer_feedback", "pk": 14656, "fields": { "answer": 14495, "candidate": 131, "answer_feedback": "The logic is sound and you are being transferred to Rome, though you and everyone else knows your odds of being released are slim." } }, { "model": "campaign_trail.answer_feedback", "pk": 14657, "fields": { "answer": 14497, "candidate": 131, "answer_feedback": "The Philippians will never forget you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14660, "fields": { "answer": 14658, "candidate": 131, "answer_feedback": "This seems unlike you to the Philippians. Perhaps you have some plan in these letters?" } }, { "model": "campaign_trail.answer_feedback", "pk": 14661, "fields": { "answer": 14659, "candidate": 131, "answer_feedback": "The Philippians will never forget you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14662, "fields": { "answer": 14500, "candidate": 131, "answer_feedback": "Among your congregation, you are remembered for your asserting goodness even at your lowest point. Yet word has spread across the Empire that you are trying to incite a slave revolt." } }, { "model": "campaign_trail.answer_feedback", "pk": 14664, "fields": { "answer": 14663, "candidate": 131, "answer_feedback": "You are remembered for your moving statements about the equality of people in Christ." } }, { "model": "campaign_trail.answer_feedback", "pk": 14666, "fields": { "answer": 14532, "candidate": 131, "answer_feedback": "The institution of the Lord's Supper becomes a background event as, later in the night, you announce that one of your disciples will betray you. You wake once again in the body of Paul and relay this to the Corinthians, who are confused slightly at what Jesus meant by 'drink of the fruit of the vine'." } }, { "model": "campaign_trail.answer_feedback", "pk": 14667, "fields": { "answer": 14533, "candidate": 131, "answer_feedback": "The institution of the Lord's Supper becomes a background event as, later in the night, you announce that one of your disciples will betray you. You wake once again in the body of Paul and relay this to the Corinthians, who have trouble understanding why the Lord cares so much about a Sunday supper." } }, { "model": "campaign_trail.answer_feedback", "pk": 14668, "fields": { "answer": 14539, "candidate": 131, "answer_feedback": "The future parts for you, and you see the Corinthian petrified with fear as their Lord, in writing, warns them of their destruction. You slowly awake again in the body of Paul." } }, { "model": "campaign_trail.answer_feedback", "pk": 14670, "fields": { "answer": 14669, "candidate": 131, "answer_feedback": "You see the future, the Corinthians are worried as the Lord, in writing, warns them of denial of eternal life. You slowly awake again remembering you are Paul." } }, { "model": "campaign_trail.answer_feedback", "pk": 14675, "fields": { "answer": 14674, "candidate": 131, "answer_feedback": "The rift between yourself and Jerusalem will be in no way helped by this difficult debate." } }, { "model": "campaign_trail.answer_feedback", "pk": 14676, "fields": { "answer": 14673, "candidate": 131, "answer_feedback": "The rift between your churches was torn open at Jerusalem, but at least you are mending some wounds." } }, { "model": "campaign_trail.answer_feedback", "pk": 14677, "fields": { "answer": 14501, "candidate": 131, "answer_feedback": "Our Father, which art in heaven, hallowed be thy Name. Thy Kingdom come." } }, { "model": "campaign_trail.answer_feedback", "pk": 14678, "fields": { "answer": 14537, "candidate": 131, "answer_feedback": "Our Father, which art in heaven, hallowed be thy Name. Thy Kingdom come." } }, { "model": "campaign_trail.answer_feedback", "pk": 14802, "fields": { "answer": 14801, "candidate": 131, "answer_feedback": "As the axe comes down on your head, you have one final vision." } }, { "model": "campaign_trail.answer_feedback", "pk": 14805, "fields": { "answer": 14804, "candidate": 131, "answer_feedback": "John baptizes you with water, while you baptize with the Holy Spirit. As the water surrounds you, a voice comes from the heavens: \"You are my Son, the Beloved; with you I am well pleased.”" } }, { "model": "campaign_trail.answer_feedback", "pk": 14807, "fields": { "answer": 14806, "candidate": 131, "answer_feedback": "Preaching to a group of tax collectors and prostitutes, the sky tears itself open and a voice says to you: \"You are my Son, the Beloved; with you I am well pleased.\"" } }, { "model": "campaign_trail.answer_feedback", "pk": 14812, "fields": { "answer": 14810, "candidate": 131, "answer_feedback": "Choosing a woman as one of your apostles is sure to be controversial, but you know well that they are all in your trust." } }, { "model": "campaign_trail.answer_feedback", "pk": 14818, "fields": { "answer": 14817, "candidate": 131, "answer_feedback": "You won't stand out among other religious groups in the region, but you do stand by a strong Jewish identity." } }, { "model": "campaign_trail.answer_feedback", "pk": 14819, "fields": { "answer": 14816, "candidate": 131, "answer_feedback": "Be careful, Jesus, for this could be the end of you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14820, "fields": { "answer": 14815, "candidate": 131, "answer_feedback": "Thus he declared all foods clean." } }, { "model": "campaign_trail.answer_feedback", "pk": 14825, "fields": { "answer": 14824, "candidate": 131, "answer_feedback": "Pilate, with some encouragement from the crowd, has decided to crucify you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14826, "fields": { "answer": 14823, "candidate": 131, "answer_feedback": "Pilate, with some encouragement from the crowd, has decided to crucify you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14827, "fields": { "answer": 14822, "candidate": 131, "answer_feedback": "Pilate, with some encouragement from the crowd, has decided to crucify you." } }, { "model": "campaign_trail.answer_feedback", "pk": 14832, "fields": { "answer": 14829, "candidate": 131, "answer_feedback": "Saul continues to oppress your followers throughout the region." } }, { "model": "campaign_trail.answer_feedback", "pk": 14836, "fields": { "answer": 14809, "candidate": 131, "answer_feedback": "These are men you are sure you can trust." } }, { "model": "campaign_trail.answer_feedback", "pk": 14837, "fields": { "answer": 14637, "candidate": 131, "answer_feedback": "Galatia is no great city, but abandoning your ministry there is a frustrating meal to swallow indeed." } }, { "model": "campaign_trail.answer_feedback", "pk": 14838, "fields": { "answer": 14830, "candidate": 131, "answer_feedback": "Saul, seeing a dead man resurrected, is struck by your appearance. Perhaps he too shall find repentance, or even more." } } ] campaignTrail_temp.jet_data = [{ "mapping_enabled": false, "mapping_data": {}, "nicknames": { "131": "Paul", "132": "Judaizers", "133": "Pagan" } } ] campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/hNRTgSn.png'; campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/bTQPBZ3.png'; campaignTrail_temp.candidate_last_name = 'Paul'; campaignTrail_temp.running_mate_last_name = 'Barnabas'; campaignTrail_temp.running_mate_state_id = '169'; campaignTrail_temp.candidate_json = JSON.parse("[{\"model\": \"campaign_trail.candidate\", \"pk\": 131, \"fields\": {\"first_name\": \"\", \"last_name\": \"Pauline\", \"election\": 13, \"party\": \"Anti-Circumcision\", \"state\": \"Tarsus\", \"priority\": 1, \"description\": \"

You have heard, no doubt, of my earlier life in Judaism. I was violently persecuting the church of God and was trying to destroy it.

Born with the name Saul, Paul can undoubtedly be called a zealot; he spent his the first years of his 30s persecuting the followers of a Galilean preacher named Jesus and advancing fast in the ways of his fathers. Following a life-changing experience where Paul was visited by the resurrected Jesus, Paul has become convinced that it is his mission to spread the so-called \\\"gospel\\\" of Jesus Christ to the Gentiles. Paul remains a proud descendant of Abraham and hopes that by converting the Gentiles, he can inspire his own people to follow his path. Paul's zealotory and ambition knows no bounds, as he plans to take his missions not just across the Levant and Anatolia, but to the far-away lands of Rome and Spain.

Paul's main enemy is the \\\"circumcision faction\\\" who seek to convert Gentiles to Christ by circumcising them and having them follow in Jewish traditions. Paul also must work with the impatient Apostles who are distrusting of Paul and his mission.\", \"color_hex\": \"#9c8954\", \"secondary_color_hex\": \"#c4ba9d\", \"is_active\": 1, \"image_url\": \"https://i.imgur.com/hNRTgSn.png\", \"electoral_victory_message\": \"

Congratulations! You have won the 1844 Election

Your first order of business will be to confirm the annexation of Texas. More generally you can fight for the expansion of the United States in line with the ideals of \\\"Manifest Destiny\\\". With a Democratic majority in Congress, you will have wide latitude to implement your program, after four years of Tyler's paralysis. Best wishes for your term in office.

\", \"electoral_loss_message\": \"

Sorry. You have lost the 1844 Election

President Clay is sure to obstruct the annexation of Texas. Hopefully a new President can bring this to a better conclusion in four years. In the meantime, your voice may hold some influence, in an advisory capacity, with the Democratic majority in Congress. It is unlikely, however, that you will be nominated for President over the likes of Lewis Cass, James Buchanan, or others in 1848.

\", \"no_electoral_majority_message\": \"

Wow. No candidate has achieved a majority in the Electoral College

This is surely an unusual situation, given that no candidate besides yourself and Clay seemed poised to win an electoral vote. Fortunately, the Democrats have won a majority in the House and seem likely to confirm you as the ultimate winner. Best wishes for your term in office.

\", \"description_as_running_mate\": \"'\", \"candidate_score\": 1.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 132, \"fields\": {\"first_name\": \"\", \"last_name\": \"Judaizer\", \"election\": 13, \"party\": \"Judaizer\", \"state\": \"Kentucky\", \"priority\": 2, \"description\": \"

Henry Clay runs in a Presidential election for the third time, and begins as the favorite against Polk. He must quickly define a position on Texas. It will be difficult to do so without alienating some bloc of the Whigs.

Clay would prefer to keep slavery and expansion on the back-burner, and advance his own issues like tariffs, internal improvements, and a national currency. Can he find redemption from his political defeats to Andrew Jackson, and finally break into the White House?

\", \"color_hex\": \"#628f9e\", \"secondary_color_hex\": \"#9dbac4\", \"is_active\": 0, \"image_url\": \"/static/images/henry-clay-1844.jpg\", \"electoral_victory_message\": \"

Congratulations! You have won the 1844 Election

Your first order of business will be to block the annexation of Texas, and hopefully to end the further discussion of this issue. Then you can concentrate on undoing the damage that Andrew Jackson and his followers have inflicted on the American System. Unfortunately, it appears that you will have to deal with a Democratic majority in Congress. Best wishes for these next four years.

\", \"electoral_loss_message\": \"

Sorry. You have lost the 1844 Election

President Polk is sure to go through with the annexation of Texas. You can only hope it doesn't lead to war. Even if the U.S. is successful in the short-term, the acquisition of such territory is sure to reopen the slavery question in a way which may hurt the Whigs. As for your own fortunes, you have likely missed your last chance to become President. How will your legacy be remembered?

\", \"no_electoral_majority_message\": \"

Wow. No candidate has achieved a majority in the Electoral College

This is sure an unusual situation, given that no candidate besides yourself and Polk seemed poised to win an electoral vote. Unfortunately, the Democrats have won a majority in the House and seem likely to confirm James K. Polk as the ultimate winner. How will your legacy be remembered?

\", \"description_as_running_mate\": \"'\", \"candidate_score\": 1.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 133, \"fields\": {\"first_name\": \"\", \"last_name\": \"Pagan\", \"election\": 13, \"party\": \"Liberty\", \"state\": \"Michigan\", \"priority\": 3, \"description\": \"'\", \"color_hex\": \"#a86363\", \"secondary_color_hex\": \"#c48484\", \"is_active\": 0, \"image_url\": \"'\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"'\", \"candidate_score\": 1.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 134, \"fields\": {\"first_name\": \"John\", \"last_name\": \"Tyler\", \"election\": 13, \"party\": \"Independent\", \"state\": \"Virginia\", \"priority\": 4, \"description\": \"'\", \"color_hex\": \"#00C100\", \"secondary_color_hex\": \"#A1FFA1\", \"is_active\": 0, \"image_url\": \"'\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"'\", \"candidate_score\": 1.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 135, \"fields\": {\"first_name\": \"Barnabas\", \"last_name\": \"\", \"election\": 13, \"party\": \"Unclear\", \"state\": \"Cyprus\", \"priority\": 5, \"description\": \"'\", \"color_hex\": \"#0000FF\", \"secondary_color_hex\": \"#90C0FF\", \"is_active\": 0, \"image_url\": \"https://i.imgur.com/bTQPBZ3.png\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"

They gave to Barnabas and me the right hand of fellowship, agreeing that we should go to the gentiles and they to the circumcised.

\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 136, \"fields\": {\"first_name\": \"Levi\", \"last_name\": \"Woodbury\", \"election\": 13, \"party\": \"Democrat\", \"state\": \"New Hampshire\", \"priority\": 6, \"description\": \"'\", \"color_hex\": \"#0000FF\", \"secondary_color_hex\": \"#90C0FF\", \"is_active\": 0, \"image_url\": \"/static/images/levi-woodbury-1844.jpg\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"

Dallas is the preferred choice of the Convention, but Polk could intervene on behalf of Levi Woodbury. Woodbury's reputation is more national than Dallas's, but he also comes from a smaller state. Woodbury has served as Secretary of the Treasury and is much more orthodox on economic issues, favoring a limited view of the federal government's powers. This could galvanize Democrats in the closer states in the South and West, but could also be a hindrance in Pennsylvania and New York.

\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 137, \"fields\": {\"first_name\": \"Theodore\", \"last_name\": \"Frelinghuysen\", \"election\": 13, \"party\": \"Whig\", \"state\": \"New Jersey\", \"priority\": 7, \"description\": \"'\", \"color_hex\": \"#FF0000\", \"secondary_color_hex\": \"#FFA0A0\", \"is_active\": 0, \"image_url\": \"/static/images/theodore-frelinghuysen-1844.jpg\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"

Theodore Frelinghuysen has served as a Senator from New Jersey, and as Mayor of Newark. He is known as something of an evangelist, being involved in numerous bible societies and advocating for moral uplift. Associates of Frelinghuysen have voiced anti-Catholic sympathies, however. His selection would help with nativists, but exacerbate the Whigs' problems with the Catholic vote. Southerners with a long memory also recall his loud opposition to the Indian Removal Act.

\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 138, \"fields\": {\"first_name\": \"John\", \"last_name\": \"Sergeant\", \"election\": 13, \"party\": \"Whig\", \"state\": \"Pennsylvania\", \"priority\": 8, \"description\": \"'\", \"color_hex\": \"#FF0000\", \"secondary_color_hex\": \"#FFA0A0\", \"is_active\": 0, \"image_url\": \"/static/images/john-sergeant-1844.jpg\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"

John Sergeant ran with Henry Clay in 1832, and has served in Congress on three occasions. He worked for the Second Bank of the United States, and strongly favors a revival of the national banking system. He is also known as an opponent of slavery, even voting against the Missouri Compromise in 1820. Obviously, this background could help Clay in certain regions, and hurt him in others. Sergeant has also been out of political office for over three years.

\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 139, \"fields\": {\"first_name\": \"Millard\", \"last_name\": \"Fillmore\", \"election\": 13, \"party\": \"Whig\", \"state\": \"New York\", \"priority\": 9, \"description\": \"'\", \"color_hex\": \"#FF0000\", \"secondary_color_hex\": \"#FFA0A0\", \"is_active\": 0, \"image_url\": \"/static/images/millard-fillmore-1844.jpg\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"

Millard Fillmore was an influential Congressman before leaving that body in 1843. He has strongly supported Whig economic policies such as a tariff and national bank. He has taken stances against the expansion of slavery, without veering into the dangerous territory of abolitionism. He is well-connected to New York politics, and his selection would undoubtedly motivate the party in that crucial state.

\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 140, \"fields\": {\"first_name\": \"Thomas\", \"last_name\": \"Morris\", \"election\": 13, \"party\": \"Liberty\", \"state\": \"Ohio\", \"priority\": 10, \"description\": \"'\", \"color_hex\": \"#FFFF00\", \"secondary_color_hex\": \"#FFFFC0\", \"is_active\": 0, \"image_url\": \"'\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"'\", \"candidate_score\": 0.0}}, {\"model\": \"campaign_trail.candidate\", \"pk\": 141, \"fields\": {\"first_name\": \"John C.\", \"last_name\": \"Calhoun\", \"election\": 13, \"party\": \"Independent\", \"state\": \"South Carolina\", \"priority\": 11, \"description\": \"'\", \"color_hex\": \"#00C100\", \"secondary_color_hex\": \"#A1FFA1\", \"is_active\": 0, \"image_url\": \"'\", \"electoral_victory_message\": \"'\", \"electoral_loss_message\": \"'\", \"no_electoral_majority_message\": \"'\", \"description_as_running_mate\": \"'\", \"candidate_score\": 0.0}}]"); var goldLevel = 0; var spainLevel = 0; var lovedLevel = 0; var deadLevel = 0; var executionLevel = 0; var peterLevel = 0; var jesusLevel = 0; campaignTrail_temp.cyoa = true cyoAdventure = function (a) { function tunnel(new_q){ e = campaignTrail_temp; return e.questions_json[e.questions_json.map(f=>f.pk).indexOf(new_q)]; } ans = campaignTrail_temp.player_answers[campaignTrail_temp.player_answers.length - 1] if(ans == 4125){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14502); } if(ans == 14503 || ans == 14505){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14507); } if(ans == 14510 || ans == 14505) { lovedLevel++; } if(ans == 14492 || ans == 14490 || ans == 14495 || ans == 14663) { spainLevel++; } if(ans == 14476 || ans == 14477) { goldLevel++; } if(ans == 14550) { goldLevel += 2; } if(ans == 14551) { peterLevel++; } if(ans == 14479 || ans == 4137 || ans == 14617 || ans == 14515 || ans == 14612 || ans == 14500) { jesusLevel++; } if(ans == 14612 || ans == 14645 || ans == 14650 || ans == 14651 || ans == 14652 || ans == 14497 || ans == 14659 || ans == 14500) { executionLevel++; } if((ans == 14555 || ans == 14477) && peterLevel == 1){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14672); } if((ans == 14560 || ans == 14559 || ans == 14478) && goldLevel == 2){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14564); } if((ans == 14560 || ans == 14559 || ans == 14478) && goldLevel == 3){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14571); } if((ans == 14508 || ans == 14510 || ans == 1451) && lovedLevel >= 2){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14514); } if((ans == 14508 || ans == 14510 || ans == 14511) && lovedLevel < 2){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14519); } if((ans == 14500 || ans == 14663) && executionLevel < 2 ){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14536); } if(ans == 14475 || ans == 14517 || ans == 14522 || ans == 14520) { deadLevel++; campaignTrail_temp.question_number=31 } if(ans == 4120 || ans == 4121 || ans == 4122){ campaignTrail_temp.question_number=2 } if(ans == 4137){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14530); campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/yYzqz7D.png'; campaignTrail_temp.running_mate_last_name = 'Peter'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/LMLO1O4.png'; campaignTrail_temp.candidate_last_name = 'Christ'; } if(ans == 14801){ e.global_parameter_json[0].fields.question_count = 37 campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14803); campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/yYzqz7D.png'; campaignTrail_temp.running_mate_last_name = 'Peter'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/LMLO1O4.png'; campaignTrail_temp.candidate_last_name = 'Christ'; } if((ans == 14500 || ans == 14663) && executionLevel > 1 && jesusLevel == 6){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14800); } if(ans == 14822 || ans == 14823 || ans == 14824){ campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/4XSfQgj.png'; campaignTrail_temp.running_mate_last_name = 'Father, Spirit'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/7p7PGNM.png'; campaignTrail_temp.candidate_last_name = 'Son'; } if(ans == 14479){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14524); campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/4XSfQgj.png'; campaignTrail_temp.running_mate_last_name = 'Father, Spirit'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/7p7PGNM.png'; campaignTrail_temp.candidate_last_name = 'Son'; } if(ans == 14617){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14538); campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/4XSfQgj.png'; campaignTrail_temp.running_mate_last_name = 'Father, Spirit'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/7p7PGNM.png'; campaignTrail_temp.candidate_last_name = 'Son'; } if(ans == 14531 || ans == 14532 || ans == 14533 || ans == 14525 || ans == 14526 || ans == 14539 || ans == 14669){ campaignTrail_temp.running_mate_image_url = 'https://i.imgur.com/bTQPBZ3.png'; campaignTrail_temp.running_mate_last_name = 'Barnabas'; campaignTrail_temp.candidate_image_url = 'https://i.imgur.com/hNRTgSn.png'; campaignTrail_temp.candidate_last_name = 'Paul'; } if(ans == 14806 || ans == 14804){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14808); } if(ans == 14809 || ans == 14810){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14814); } if(ans == 14815 || ans == 14816 || ans == 14817){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14821); } if(ans == 14822 || ans == 14823 || ans == 14824){ campaignTrail_temp.questions_json[campaignTrail_temp.question_number + 1] = tunnel(14828); } if(ans == 14829){ jesusLevel++; } } let e = campaignTrail_temp // constructs endings based on header and pages construct = (a = 1) => { e.page = e.page + a < e.pages.length ? e.page + a : 0 let html = e.header; html += e.pages[e.page] + "
"; if (e.page > 0) { html += `` } if (e.page < e.pages.length - 1) { html += `` } if (e.image == true) setTimeout(()=>{ candImg = $(".person_image")[0] if (candImg) { candImg.remove() $("#final_results_description")[0].style = ` text-align:left; width: 70%; text-overflow: ellipsis; display: block; margin-left: auto; margin-right: auto; ` } }, 10) else if (e.image) setTimeout(()=>{ candImg = $(".person_image")[0]; if (candImg) candImg.src = e.image; }, 10) return html; } endingConstructor = (a = 1) => { $("#final_results_description")[0].innerHTML = construct(a); } // ENDINGS -- this is slightly more reliable than the ending code method e.multiple_endings = true; endingPicker = (out, totv, aa, quickstats) => { //out = "win", "loss", or "tie" for your candidate //totv = total votes in entire election //aa = all final overall results data //quickstat = relevant data on candidate performance (format: your candidate's electoral vote count, your candidate's popular vote share, your candidate's raw vote total) /* e.header = "

" e.pages = ["

", "

"] */ // NOT NORMAL ENDINGS if (deadLevel > 0) { e.header = "

My desire is to depart and be with Christ, for that is far better, but to remain in the flesh is more necessary for you.

" e.pages = ["

You have died an early death, before your time. You have failed to fulfill your mission and your potential for His name’s sake, and you have left behind His truth and justice to all people. You have been a faithful witness and a devoted disciple, but you have not finished the race. This is the end of your journey.

Nobody will know what Christianity would have been like had you lived, and its fate is anyone’s guess. Without the influence of the Anti-Circumcisionists to spread the Holy Spirit to the gentiles, who knows if the Christian sect can even survive. In any case, your journey is over. Maybe in another life, you could have fulfilled your mission.

"] e.image = "https://i.imgur.com/y2g8rKX.png"; return construct(0); } else if (jesusLevel == 7) { e.header = "

Prepare the way of the Lord; make his paths straight,

" e.pages = ["

As powerful as James, John, and Peter became, no matter how many followers of Christ were baptized, the Jerusalem Church was unable to withstand the death and destruction of the Roman-Jewish War. The diaspora of followers of Christ spent centuries living in Greece and Asia Minor until the sect fizzled out some time in the fifth century; today, little remains. It is often asked by historians what caused the sect to fail, with most pointing to the fall of the temple and the siege of Jerusalem. With no formal church hierarchy left, the little Christs seemingly became increasingly divided over theological matters and failed to ever re-unite. The Jesus-sect has left little archaeological evidence. Most information about them has been gathered from Hellenic polemics and histories – a series of fragments of what is assumed to be a holy text. One such fragment reads:

At three o’clock Jesus cried out with a loud voice, Eloi, Eloi, lema sabachthani? which means, My God, my God, why have you forsaken me?

"] e.image = "https://i.imgur.com/2Bw8JNb.png"; return construct(0); } else if (spainLevel == 4 && quickstats[2] == aa[0].popular_votes) { e.header = "

I will set out by way of you to Spain, and I know that when I come to you I will come in the fullness of the blessing of Christ.

" e.pages = ["

You have been imprisoned in Rome for preaching the gospel of Jesus Christ, but you have not lost hope. You know that God has a plan for you, and that your faithful congregation is praying for you. One night, you hear a knock on your cell door. It is one of your fellow believers, who has bribed the guard to let you out. He tells you that a ship is waiting for you at the port, ready to take you to Spain, where you have longed to go. You grab your cloak and follow him, thanking God for this miraculous escape.

You board the ship with joy and gratitude, feeling the wind in your hair and the sun on your face. Eager to see the new lands and people that God has prepared for you, you are confident that He will use you to spread His word and His love to the ends of the earth. You look at the horizon, where the sea meets the sky, and smile. You are free, and you are on a mission.

"] e.image = "https://i.imgur.com/Y2Q3G6v.png"; return construct(0); } else if (executionLevel > 1 && quickstats[2] == aa[0].popular_votes) { e.header = "

For since we believe that Jesus died and rose again, even so, through Jesus, God will bring with him those who have died.

" e.pages = ["

You have endured many hardships and persecutions for His name’s sake. You have spread the good news of His grace and love to all nations. You have shown courage, faith, humility, and love in all your dealings. You have been a faithful servant and a loyal friend. How then does He reward you in your final moments? Through your martyrdom, you are crowned with glory and honor. You have the privilege of sharing in the sufferings of Christ, and the assurance of God's presence and His peace. In your death, you will see His face and hear His voice, and you have the hope of eternal life in the Kingdom of Heaven. You will rejoice in these truths for the rest of eternity.

After your death, the Jerusalem church will face a great tribulation. Caesar Nero, reeling from the great fire, will unleash a fierce persecution against them, leading to many of your fellow disciples to be martyred. The Roman governor of Judea, Gessius Florus, will provoke from the Jews a 7-year long conflict. The war will be devastating for both sides, but especially for the Jews and the Christians, as the Roman army, led by Vespasian and his son Titus, will besiege Jerusalem and destroy the city and the Temple Escaping to Pella, the church will become predominantly gentile, as more and more pagans are converted by the power of the Holy Spirit. The gospel will spread to every nation, tribe, tongue, and people, lasting until the day when Christ returns to judge the living and the dead, sharing in his resurrection, his glory, and his eternal life.

"] e.image = "https://i.imgur.com/KyV9iaZ.png"; return construct(0); } else if (executionLevel < 2 && quickstats[2] == aa[0].popular_votes) { e.header = "

Eloi, Eloi, lama sabachthani?

" e.pages = ["

You have suffered many trials and tribulations for His name’s sake. You have traveled far and wide, preaching the gospel to Jews and Gentiles alike. You have faced opposition, rejection, ridicule, beatings, stonings, shipwrecks, and imprisonment. Why then does He abandon you in your hour of need? You are chained and guarded by soldiers. You have no visitors, no friends, no letters. You have nothing but this cold and damp cell. How can you be a witness for Him in such conditions? How can you fulfill your calling as an apostle? You will grapple with these questions for the rest of your days.

After your death, the Jerusalem church will face a great tribulation. Caesar Nero, reeling from the great fire, will unleash a fierce persecution against them, leading to many of your fellow disciples to be martyred. The Roman governor of Judea, Gessius Florus, will provoke from the Jews a 7-year long conflict. The war will be devastating for both sides, but especially for the Jews and the Christians, as the Roman army, led by Vespasian and his son Titus, will besiege Jerusalem and destroy the city and the Temple Escaping to Pella, the church will become predominantly gentile, as more and more pagans are converted by the power of the Holy Spirit. The gospel will spread to every nation, tribe, tongue, and people, lasting until the day when Christ returns to judge the living and the dead, sharing in his resurrection, his glory, and his eternal life.

"] e.image = "https://i.imgur.com/SAI4ua6.png"; return construct(0); } else if (executionLevel > 1 && aa[0].candidate == 133) { e.header = "

For since we believe that Jesus died and rose again, even so, through Jesus, God will bring with him those who have died.

" e.pages = ["

You have endured many hardships and persecutions for His name’s sake. You have spread the good news of His grace and love to all nations. You have shown courage, faith, humility, and love in all your dealings. You have been a faithful servant and a loyal friend. How then does He reward you in your final moments? Through your martyrdom, you are crowned with glory and honor. You have the privilege of sharing in the sufferings of Christ, and the assurance of God's presence and His peace. In your death, you will see His face and hear His voice, and you have the hope of eternal life in the Kingdom of Heaven. You will rejoice in these truths for the rest of eternity.

Long after your death, the Hellenic pantheon will begin to absorb the Christian faith into its fold, recognizing Jesus and his apostles as deities within its expansive pantheon. The teachings of Christ will become heavily syncretic, blending with the beliefs and practices of the Greek gods. As this process unfolds, Christianity will gradually lose its distinct identity, becoming just another cult in the diverse religious landscape of the Roman Empire. By the dawn of the 3rd century, the Christian faith as it was once known will have all but disappeared, its teachings and traditions absorbed into the wider Hellenistic religious milieu.

"] e.image = "https://i.imgur.com/KyV9iaZ.png"; return construct(0); } else if (executionLevel < 2 && aa[0].candidate == 133) { e.header = "

Eloi, Eloi, lama sabachthani?

" e.pages = ["

You have suffered many trials and tribulations for His name’s sake. You have traveled far and wide, preaching the gospel to Jews and Gentiles alike. You have faced opposition, rejection, ridicule, beatings, stonings, shipwrecks, and imprisonment. Why then does He abandon you in your hour of need? You are chained and guarded by soldiers. You have no visitors, no friends, no letters. You have nothing but this cold and damp cell. How can you be a witness for Him in such conditions? How can you fulfill your calling as an apostle? You will grapple with these questions for the rest of your days.

Long after your death, the Hellenic pantheon will begin to absorb the Christian faith into its fold, recognizing Jesus and his apostles as deities within its expansive pantheon. The teachings of Christ will become heavily syncretic, blending with the beliefs and practices of the Greek gods. As this process unfolds, Christianity will gradually lose its distinct identity, becoming just another cult in the diverse religious landscape of the Roman Empire. By the dawn of the 3rd century, the Christian faith as it was once known will have all but disappeared, its teachings and traditions absorbed into the wider Hellenistic religious milieu

"] e.image = "https://i.imgur.com/SAI4ua6.png"; return construct(0); } else if (executionLevel > 1 && aa[0].candidate == 132) { e.header = "

For since we believe that Jesus died and rose again, even so, through Jesus, God will bring with him those who have died.

" e.pages = ["

You have endured many hardships and persecutions for His name’s sake. You have spread the good news of His grace and love to all nations. You have shown courage, faith, humility, and love in all your dealings. You have been a faithful servant and a loyal friend. How then does He reward you in your final moments? Through your martyrdom, you are crowned with glory and honor. You have the privilege of sharing in the sufferings of Christ, and the assurance of God's presence and His peace. In your death, you will see His face and hear His voice, and you have the hope of eternal life in the Kingdom of Heaven. You will rejoice in these truths for the rest of eternity.

Shortly after your death, the Judaizers will gain the upper hand over the Pauline Christians. the tumult of the Roman-Jewish War will serve as the crucible for this transformation. The destruction of Jerusalem and its Temple will shatter the early church, causing many to seek refuge in the strictures and rituals of traditional Judaism. The Pauline mission to the Gentiles will falter, overwhelmed by the power of Rome and the resilience of the Judaizers. By the end of the first century, the Christian sect, once a growing movement, will have largely faded away, absorbed back into the Jewish community from which it sprung.

"] e.image = "https://i.imgur.com/KyV9iaZ.png"; return construct(0); } else if (executionLevel < 2 && aa[0].candidate == 132) { e.header = "

Eloi, Eloi, lama sabachthani?

" e.pages = ["

You have suffered many trials and tribulations for His name’s sake. You have traveled far and wide, preaching the gospel to Jews and Gentiles alike. You have faced opposition, rejection, ridicule, beatings, stonings, shipwrecks, and imprisonment. Why then does He abandon you in your hour of need? You are chained and guarded by soldiers. You have no visitors, no friends, no letters. You have nothing but this cold and damp cell. How can you be a witness for Him in such conditions? How can you fulfill your calling as an apostle? You will grapple with these questions for the rest of your days.

Shortly after your death, the Judaizers will gain the upper hand over the Pauline Christians. the tumult of the Roman-Jewish War will serve as the crucible for this transformation. The destruction of Jerusalem and its Temple will shatter the early church, causing many to seek refuge in the strictures and rituals of traditional Judaism. The Pauline mission to the Gentiles will falter, overwhelmed by the power of Rome and the resilience of the Judaizers. By the end of the first century, the Christian sect, once a growing movement, will have largely faded away, absorbed back into the Jewish community from which it sprung.

"] e.image = "https://i.imgur.com/SAI4ua6.png"; return construct(0); } }